Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
99664 | 黄思翔 | 2020 | C++ | Compile Error | 0 MS | 0 KB | 163 | 2024-11-30 12:37:32 |
#include<bits/stdc++.h> using namespace std; int main(){ int a=0,b=a/10; cin>>a; if(b%101==0){ cout<<"YES"; } else{ cout<<"NO" } return 0; }
Main.cc: In function 'int main()': Main.cc:11:2: error: expected ';' before '}' token } ^