Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
429 | 关清声 | 11温度转换II | C++ | Wrong Answer | 0 MS | 264 KB | 168 | 2022-08-19 11:37:06 |
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int main() { double h,s; cin>>h; s=h*5/9-32; printf("%.4lf",s); return 0; }
------Input------
4.8
------Answer-----
-15.1111
------Your output-----
-29.3333