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