l2.1a
来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· 1A 代码 · 共 56 行
1A
56 行
#print(Section 1.2)The file Ref.c contains a copy ofa program to convert Fahrenheit toCelsius. Modify it to print thisheading at the top:Fahrenheit-Celsius Conversion F: C:Type ready when you're satisfied.#once #create RefFahrenheit-Celsius Conversion F: C: 0 -17.8 20 -6.7 40 4.4 60 15.6 80 26.7 100 37.8 120 48.9 140 60.0 160 71.1 180 82.2 200 93.3 220 104.4 240 115.6 260 126.7 280 137.8 300 148.9#once #create Ref.c/* print Fahrenheit-Celsius table for f = 0, 20, ..., 300 */main(){ int lower, upper, step; float fahr, celsius; lower = 0; /* lower limit of temperature table */ upper = 300; /* upper limit */ step = 20; /* step size */ fahr = lower; while (fahr <= upper) { celsius = (5.0/9.0) * (fahr-32.0); printf("%4.0f %6.1f\n", fahr, celsius); fahr = fahr + step; }}#usera.out >x#cmp Ref x#failMake sure you get the spacing right.#log#next2.1b 10
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?