8 条题解
-
0
Guest
- 1
信息
- ID
- 13
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 1
- 标签
- 递交数
- 185
- 已通过
- 127
- 上传者
根据公式推即可。
#include<bits/stdc++.h>
using namespace std;
int main(){
float c,f;
cin>>c;
f=1.8*c+32;
printf("%.2f",f);
return 0;
}
才50分,谁找找错 #include<bits/stdc++.h> using namespace std; int main() { double F; scanf("4f",&F); printf("39.20",39.20*(F+32)/9); return 0; }
三叶的题解来啦 #include<bits/stdc++.h> using namespace std; int main() {double c,f; cin>>c; f=9*c/5+32; cout<<fixed<<setprecision(2)<<f;
return 0;
}
注册一个 PYYG 通用账户,您就可以在我们提供的所有在线评测服务上提交代码、参与讨论。