Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
125884 陈淮遇 温度转换 C++ Accepted 0 MS 272 KB 155 2025-07-15 16:11:22

Tests(1/1):


Code:

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