Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
137291 zyh 07比较大小 C++ Compile Error 0 MS 0 KB 152 2025-11-17 16:08:13

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int f,n; cin>>f>>n; if(f>n){ cout<<f<<endl; else { cout<<n<<endl; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:8:1: error: expected '}' before 'else'
 else {
 ^
Main.cc:11:2: error: expected '}' at end of input
  }
  ^