Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
55206 沈俊博 温度转换 C++ Accepted 2 MS 272 KB 148 2023-07-26 21:00:01

Tests(1/1):


Code:

#include<iostream> using namespace std; int main(){ double c,F; cin>>F; c=5.0/9*(F-32); printf("%.2lf\n",c); return 0; }