无注释,复制直接过
2026-07-25 07:58:59
发布于:浙江
23阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main(){
double f, k, c;
cin >> k;
c = k - 273.15;
f = c * 1.8 + 32;
if (f > 212) {
cout << "Temperature is too high!";
}else{
printf("%.2f", c);
printf(" ");
printf("%.2f", f);
}
}
复制粘贴就能过
这里空空如也





有帮助,赞一个