Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
105092 陈奕涵 07判断成绩 C++ Compile Error 0 MS 0 KB 219 2025-01-12 14:19:18

Tests(0/0):


Code:

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ int n=37; cin>>n; if(n>60) cout<<"YES"; if(n<60) cout<<"NO" return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:11:5: error: expected ';' before 'return'
     return 0;
     ^