Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
95124 | 陈治宸 | 03温度转换 | C++ | Wrong Answer | 0 MS | 272 KB | 138 | 2024-10-26 21:21:01 |
#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