Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
89113 | 蔡佳轩 | 03温度转换 | C++ | Compile Error | 0 MS | 0 KB | 133 | 2024-08-22 15:02:18 |
#include <iostream> using namespace std; int main(){ double c,f; cin>>c; f = c×9/5+32; cout<<f; }
Main.cc:6:5: error: stray '\303' in program f = c×9/5+32; ^ Main.cc:6:5: error: stray '\227' in program Main.cc: In function 'int main()': Main.cc:6:12: error: expected ';' before numeric constant f = c×9/5+32; ^