Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
7587 | luchenyuan | 温度表达转化 | C++ | 编译错误 | 0 MS | 0 KB | 180 | 2023-02-05 07:51:31 |
#include<iostream> #include<iomanip> using namespace std; int main() { float f; cin >> f; float c=5*(F-32)/9; cout << setprecision(5) << c; return 0; }