Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
102258 | 胡思齐 | 02买礼物 | C++ | Compile Error | 0 MS | 0 KB | 176 | 2024-12-21 14:34:18 |
#include <iostream> using namespace std; int main() { int a,b,c; a=4; b=220; c=1000; cin>>a>>b>>c; cout<<c-a*b<<endl; return 0; }
Main.cc:6:5: error: stray '\357' in program a=4; ^ Main.cc:6:5: error: stray '\274' in program Main.cc:6:5: error: stray '\233' in program Main.cc: In function 'int main()': Main.cc:7:5: error: expected ';' before 'b' b=220; ^