Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
108273 常钰杰 11温度转换II C++ Accepted 1 MS 272 KB 224 2025-01-20 09:17:10

Tests(10/10):


Code:

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