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