Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5471 吴承熹 输出成绩等级II C++ Compile Error 0 MS 0 KB 462 2024-11-16 14:11:31

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int a; cin>>a; a=a/10; switch(a){ case 9: cout<<"A"<<endl; break; case 8: cout<<"B"<<endl; break; case 7: cout<<"B"<<endl; break; case 6: cout<<"C"<<endl; break; default: cout<<"D"<<endl; break; return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:24:1: error: expected '}' at end of input
 }
 ^