Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
89530 蔡佳轩 07判断奇数 C++ Compile Error 0 MS 0 KB 153 2024-08-25 14:29:54

Tests(0/0):


Code:

#include <iostream> using namespace std; int main(){ int a; if(a%2==1){ cout<<"Yes"; } else{ cout<<"No" } }


Run Info:

Main.cc: In function 'int main()':
Main.cc:10:5: error: expected ';' before '}' token
     }
     ^