Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
541 | 曾浩森 | 07判断奇数 | C++ | Compile Error | 0 MS | 0 KB | 205 | 2022-11-19 14:35:40 |
#include<iostream> using namespace std; int main(){ int temp,a; cin>>temp; a=temp%2; if(a==1) { cout<<"yes"; } else{ cout<<"no"; } return 0;
Main.cc: In function 'int main()': Main.cc:14:13: error: expected '}' at end of input return 0; ^