#include<bits/stdc++.h> using namespace std; int main(){ double k; cin>>k; if(k>212){ //特判k高于212的情况 cout<<"Temperature is too high!"<<endl; return 0; }double c; //定义c和f; double f; c=k-273.15;//套公式 f=c*1.8+32; cout<<fixed<<setprecision(2)<<c<<" <<f<<endl;//输出答案,保留两位小数。 }