#include<stdio.h>
#include <math.h>
int main(){
int c=26,f;
f=(9*(c/5))+32;
printf("celsius = 26, fahr = %d",f);
}
实验2-2-2 计算华氏温度
最新推荐文章于 2024-11-09 18:20:07 发布
#include<stdio.h>
#include <math.h>
int main(){
int c=26,f;
f=(9*(c/5))+32;
printf("celsius = 26, fahr = %d",f);
}