1 #include<stdio.h> 2 /*当celsius=0,1,...,100时,打印摄氏温度与华氏温度对照表; 3 浮点数版本*/ 4 main () 5 { 6 float fahr,celsius; 7 int lower,upper,step; 8 lower=0;/*温度表的下限*/ 9 upper=100;/*温度表的上限*/ 10 step=1;/*步长*/ 11 celsius=lower; 12 printf("华氏温度与摄氏温度对照表\n");/*标题*/ 13 while (celsius <= upper) 14 { 15 fahr=(9.0/5.0)*celsius+32; 16 printf("%3.0f %6.1f\n",fahr,celsius); 17 celsius=celsius+step; 18 } 19 }