admin管理员组

文章数量:1530041

任务:

根据给出的格式要求输出摄氏-华氏温度对应表。

温度转换公式:华氏温度=9/5∗摄氏温度+32

要求:

输出摄氏-华氏温度对应表。每行输出格式要求:摄氏温度和华氏温度均为单精度浮点数,都各占8个字符位宽,精度取2;摄氏温度前一个 tab 键,摄氏温度和华氏温度间以一个 tab 键相隔(摄氏温度从−30°循环到30°)。 

预期输出:

  1. 摄氏温度 华氏温度
  2. -30.00 -22.00
  3. -25.00 -13.00
  4. -20.00 -4.00
  5. -15.00 5.00
  6. -10.00 14.00
  7. -5.00 23.00
  8. 0.00 32.00
  9. 5.00 41.00
  10. 10.00 50.00
  11. 15.00 59.00
  12. 20.00 68.00
  13. 25.00 77.00
  14. 30.00 86.00

参考: 

#include <stdio.h>
#include <stdlib.h>
int main()
{
    float c;
    printf("\t摄氏温度\t华氏温度\n");
    for(c=-30;c<=30;c=c+5)
        printf("\t%8.2f\t%8.2f\n",c,(9.0/5.0)*c+32);
    return 0;
}

或用while循环:

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int f,step;
    float c = -30.0;
    step = 5;
    printf("华氏温度\t摄氏温度\n");
    while(c<=30)
        {
            f = 9.0/5*c+32;
            printf("%d\t%.6f\n",f,c);
            c+=step;
        }
    return 0;
}

 

本文标签: 华氏温度入门语言程序设计