IHYPRESS.NET
C
HOME | ASP | C | CSS | HTML | JAVASCRIPT | PERL | PHP | PYTHON | RUBY | SVG
CLoops ❯ Fahrenheit to Celcius Conversion Table
<04.12>
/* The Fahrenheit-to-Celcius Conversion Table */ #include <stdio.h> #define CBEGIN 10 #define CLIMIT -5 #define CSTEP 5 int main(void) { int celcius; double fahrenheit; /* table heading */ printf ("Celcius Fahrenheit\n"); printf ("------- ----------\n"); /* table display */ for (celcius = CBEGIN; celcius >= CLIMIT; celcius -= CSTEP) { fahrenheit = 1.8 * celcius + 32; printf ("%5d %13.1lf\n", celcius, fahrenheit); } return (0); }
Hergestellt in Deutschland / Made in Germany
Celcius Fahrenheit ------- ---------- 10 50.0 5 41.0 0 32.0 -5 23.0
COPYRIGHT © 2015-2024 IHYPRESS.NET. A DIVISION OF IHY PRESS. ALL RIGHTS RESERVED.