Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
95123 | 陈治宸 | 03温度转换 | C++ | Wrong Answer | 0 MS | 268 KB | 321 | 2024-10-26 21:17:43 |
#include<iostream> using namespace std; int main(){ int c,f; cin>>c; f=c*9/5+32; cout<<c; return 0; }
------Input------
41.1
------Answer-----
105.98
------Your output-----
41