summaryrefslogtreecommitdiff
path: root/fahr-celc.c
diff options
context:
space:
mode:
Diffstat (limited to 'fahr-celc.c')
-rw-r--r--fahr-celc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fahr-celc.c b/fahr-celc.c
index ccef413..ac3c2fc 100644
--- a/fahr-celc.c
+++ b/fahr-celc.c
@@ -3,9 +3,9 @@
/* print farenheight-celcius
conversion table for 0, 20, ...300 */
int main() {
- for (float fahr=0.0;
- fahr<=300.0;
- fahr+=20.0) {
+ for (float fahr=300.0;
+ fahr>=0.0;
+ fahr-=20.0) {
printf("%3.0f %6.1f\n",
fahr,
(5.0/9.0)*(fahr-32.0));