Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1966 莫业祁 11温度转换II C++ Accepted 0 MS 264 KB 159 2023-12-02 18:28:33

Tests(10/10):


Code:

# include<iostream> # include<cmath> using namespace std; int main(){ double a,b; cin>>a; b=(a-32)/9*5; printf("%.4lf",b); return 0; }