Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
138979 胡海峰老师 03温度转换 C++ Accepted 0 MS 276 KB 168 2025-11-30 18:14:52

Tests(10/10):


Code:

#include <iostream> //designed by hu 2025-10 using namespace std; int main(){ float c; float f; cin>>c; f = c*9.0/5 + 32; cout<<f; return 0; }