学习之路-练习题参考答案 1-5

#include
#include

int main()
{
    float fahr, celsius;
 int lower, upper, step;
 lower = 0;
 upper = 300;
 step = 20;
 fahr = upper;
 printf("华氏温度与摄氏温度对照表\n\n");
 
  char *pFahr = "华氏温度";
 char *pCelsius = "摄氏温度";
 printf("%4s %4s\n",pFahr,pCelsius);
 while(fahr >= 0)
 {
     celsius = (5.0/9.0)*(fahr-32.0);
  printf("%4.0f  %9.1f\n", fahr, celsius);
  fahr -= step;
 }

 return 0;
}

你可能感兴趣的:(C)