#includeusing namespace std;int main(){float f,c;cout<<"请输入华氏温度:"cin>>f;c=(f-32)*5/9;cout<<"换算为摄氏温度为:"<return 0;}