| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 118011 | 张修睿 | 温度转换 | C++ | Wrong Answer | 1 MS | 276 KB | 129 | 2025-04-21 21:21:34 |
#include<bits/stdc++.h> using namespace std; int main() { double C,F; cin>>C; F=C*9/5+32; cout<<F; }
------Input------
95.55
------Answer-----
35.31
------Your output-----
203.99