Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
136056 汤子杨 07比较大小 C++ Compile Error 0 MS 0 KB 142 2025-11-09 11:41:50

Tests(0/0):


Code:

#include <iostream> using namespace std; int main() { int a; cin>>a; if(a>b) { cout<<a; } if(b>a) { cout<<b; } }


Run Info:

Main.cc: In function 'int main()':
Main.cc:7:7: error: 'b' was not declared in this scope
  if(a>b)
       ^
Main.cc:11:5: error: 'b' was not declared in this scope
  if(b>a)
     ^