Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
90647 | 何睿函 | 03温度转换 | C++ | Wrong Answer | 1 MS | 260 KB | 129 | 2024-09-16 11:39:22 |
#include<bits/stdc++.h> using namespace std; int main(){ double C=2.5; double f; f=C*9.0/5+32; cout<<f; return 0; }
------Input------
41.1
------Answer-----
105.98
------Your output-----
36.5