Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
90298 | 刘世勋 | 07判断奇数 | C++ | Compile Error | 0 MS | 0 KB | 152 | 2024-09-11 18:41:41 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a%2=1){ cout<<"YES"; } else{ cout<<"NO"; } return 0; }
Main.cc: In function 'int main()': Main.cc:6:8: error: lvalue required as left operand of assignment if(a%2=1){ ^