就是一些代码大全,像计算华氏度摄氏度的编程怎么做
收起
#include<stdio.h> int main() { double c,f; scanf("%lf",&f); //输入华氏温度 c=5*(f-32)/9; //摄氏温度 printf("c=%.2lf",c); }
报告相同问题?