Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
2974 | 孙梓宸 | 11温度转换II | C++ | Wrong Answer | 2 MS | 828 KB | 204 | 2020-11-29 16:37:55 |
#include<iostream> #include <iomanip> using namespace std; int main() { float c,f; cin>>c; f=c*9/5+32; cout<<setprecision(4)<<setiosflags(ios::fixed|ios::showpoint)<<f<<endl; }
------Input------
3.8
------Answer-----
-15.6667
------Your output-----
38.8400