Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
135233 田紫萱 07判断成绩 C++ Compile Error 0 MS 0 KB 157 2025-11-03 16:32:14

Tests(0/0):


Code:

#include <iostream> using namespace std; int main(){ int rain; cin>>rain; if(rain>=60){ cout<<"YES"; } if(rain<60) cout<<"NO"; } }


Run Info:

Main.cc:13:1: error: expected declaration before '}' token
 } 
 ^