题解
2025-08-17 14:47:37
发布于:江苏
3阅读
0回复
0点赞
#include<iostream>
#include<cstdio>
using namespace std;
int main(){
double k;
cin>>k;
double c=k-273.15,f=c*1.8+32;
if(f>212){
cout<<"Temperature is too high!";
}else{
printf("%.2f %.2f",c,f);
}
return 0;
}
这里空空如也
有帮助,赞一个