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.

12 lines
163 B

#include<iostream>
using namespace std;
int main() {
double f,c;
cout<<"请输入华氏温度:";
cin>>f;
c=(f-32.0)*5.0/9.0;
cout<<"摄氏温度为:"<<c;
return 0;
}