Run ID:1843

提交时间:2023-11-12 10:15:58

# include<iostream> using namespace std; int main(){ float C,F; cin>>C; F=C*9/5+32; cout<<F<<endl; return 0; }