Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
135344 rsx 07判断奇数 C++ Compile Error 0 MS 0 KB 148 2025-11-03 17:02:16

Tests(0/0):


Code:

#include <iostream> using namespace std; int main(){ int a; cin>>a; if(a=33){ cout<<"YES"; } if(a<>33){ cout<<"NO"; } }


Run Info:

Main.cc: In function 'int main()':
Main.cc:6:9: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
  if(a=33){
         ^
Main.cc:10:7: error: expected primary-expression before '>' token
  if(a<>33){
       ^