blob: 5682bf97deb9d5b191d79f99117714d892be717a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
Exercise 1-3. Modify the temperature conversion program to print a heading
above the table.
===
*/
#include <stdio.h>
int main () {
float fahr, celsius;
int lower = 0; /* lower limit of the temperature table */
int upper = 300; /* upper limit */
int step = 20; /* step size */
puts("Fahrenheit to Celsius");
puts(" F C");
fahr = lower;
while (fahr <= upper) {
celsius = (5.0/9.0) * (fahr-32.0);
printf("%3.0f %6.1f\n", fahr, celsius);
fahr += step;
}
}
|