Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143669 张锦程 输出较大的数 C++ Compile Error 0 MS 0 KB 199 2026-01-17 14:38:14

Tests(0/0):


Code:

#include<iostream> using namespace std; int main() { int x,y; cin>>x>>y; if(x>y){ cout<<"max="<<x<<endl; }else{ cout<<"max="<<y<<endl; } return,0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:11:11: error: expected primary-expression before ',' token
     return,0;
           ^