Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
41668 王子诺 温度转换 C++ Accepted 2 MS 272 KB 136 2022-11-04 21:51:50

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ float f,c;cin>>f; c=(f-32)*5/9; printf("%.2f",c); return 0; }