From 49891f6bce29843f503b437c84d83cb787ecfa87 Mon Sep 17 00:00:00 2001 From: Zhineng Li Date: Sat, 10 Jan 2026 16:37:39 +0800 Subject: first commit --- ch01/ex04-temp.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ch01/ex04-temp.c (limited to 'ch01/ex04-temp.c') diff --git a/ch01/ex04-temp.c b/ch01/ex04-temp.c new file mode 100644 index 0000000..f78a191 --- /dev/null +++ b/ch01/ex04-temp.c @@ -0,0 +1,21 @@ +#include + +/* print Celsius-Fahrenheit table */ +int main() +{ + float celsius, fahr; + int lower, upper, step; + + lower = 0; + upper = 300; + step = 20; + + printf("%3s %6s\n", "C", "F"); + + celsius = lower; + while (celsius <= upper) { + fahr = celsius / (5.0/9.0) + 32.0; + printf("%3.0f %6.0f\n", celsius, fahr); + celsius = celsius + step; + } +} -- cgit v1.2.3