You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
313 B

#include <iostream>
#include <cstdio>
using namespace std;
int main(){
float f,c; //定义华氏度、摄氏度
cin>>f; //输入华氏度
c=5*(f-32)/9; //计算
printf("c=%.2f",c); //输出,保留两位小数
return 0;
}