#include <iostream>
using namespace std;
int main()
{
unsigned int c;
cin >> c;
float f = (9.0/5.0) * c + 32.0;
cout << f << endl;
cin.get();
return 0;
}
最后更新于 2019-10-06 15:00:16
#include <iostream>
using namespace std;
int main()
{
unsigned int c;
cin >> c;
float f = (9.0/5.0) * c + 32.0;
cout << f << endl;
cin.get();
return 0;
}