SOS 995 ε(┬┬﹏┬┬)3

tctm135 2023-05-03 21:04:43 2023-05-03 21:04:56 5

#include <bits/stdc++.h> using namespace std; int main(){ float F; float C; cin>>F; if(F>=-459.67){ C=5*(F-32)/9; printf("%.5f",C); } return 0; } //哪错了?

{{ vote && vote.total.up }}

共 2 条回复

root 站长

经过我的仔细思考,我觉得这个题没必要精度卡这么高,现在double和float都可以通过。

root 站长

代码没问题,用double就能通过了,float的精度低了点。