Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
135318 dyh 07比较大小 C++ Compile Error 0 MS 0 KB 153 2025-11-03 16:56:47

Tests(0/0):


Code:

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


Run Info:

Main.cc: In function 'int main()':
Main.cc:11:9: error: expected primary-expression before ';' token
   cout<<;
         ^