Run ID:91782

提交时间:2024-09-22 15:00:18

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