Wrong Answer #1!95分求条!
查看原帖
Wrong Answer #1!95分求条!
1534891
beijingzhan楼主2025/1/19 18:01
#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;//输出答案,保留两位小数。
}

哪位大佬可以蒟蒻代码中的Error!

2025/1/19 18:01
加载中...