Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89638 | 赵天瑜 | 03温度转换 | C++ | Wrong Answer | 0 MS | 272 KB | 119 | 2024-08-27 15:50:58 |
#include<iostream> using namespace std; int main() { int C; cin>>C; cout<<C*9/5+32; return 0; }
------Input------
41.1
------Answer-----
105.98
------Your output-----
105