Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
107494 | 常钰杰 | 温度转换 | C++ | Wrong Answer | 1 MS | 272 KB | 164 | 2025-01-18 09:14:31 |
#include <iostream> #include <cstdio> using namespace std; int main() { float a,b; cin>>a; b=(a-32)*5/9; printf("#.2f",b); return 0; }
------Input------
95.55
------Answer-----
35.31
------Your output-----
#.2f