Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146090 c13 输出成绩等级II C++ Compile Error 0 MS 0 KB 232 2026-01-25 20:48:13

Tests(0/0):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; if(a>=90)cout<<'A'<<endl; else if(a>=70&&a<90)cout<<'B'<<endl; else if(a>=60&&a<70)cout<<'C'<<endl; else cout<<'D'<<endl; return 0;


Run Info:

Main.cc: In function 'int main()':
Main.cc:10:9: error: expected '}' at end of input
 return 0;
         ^