Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
101986 | 魏宏搏 | 11温度转换II | C++ | Wrong Answer | 0 MS | 272 KB | 156 | 2024-12-21 10:58:29 |
#include<iostream> #include<cmath> using namespace std; int main(){ double c,f; cin>>f; c=f/5.0; printf("%.4lf",c); return 0; }
------Input------
9.8
------Answer-----
-12.3333
------Your output-----
1.9600