6.5

来源:互联网 发布:otsu算法 编辑:程序博客网 时间:2024/06/04 08:52
#include <stdio.h>#include <stdlib.h>int main(){    int f;    float c;    for(f=0;f<=300;f++)    {        c=(5.0/9)*(f-32);        printf("华氏温度%d对应的摄氏温度%.0f\n",f,c);    }}

这里写图片描述

原创粉丝点击