| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 120326 | 王镜铭 | 07判断奇数 | C++ | Compile Error | 0 MS | 0 KB | 160 | 2025-05-25 13:22:03 |
#include<bits/stdc++.h> using namespace std; int main(){ long long a; cin>>a; if(a%2==0){ cout<<"Yes": } else{ cout<<"No"; } return 0; }
Main.cc: In function 'int main()':
Main.cc:7:14: error: expected ';' before ':' token
cout<<"Yes":
^