Run ID:91840

提交时间:2024-09-22 15:51:38

#include <bits/stdc++.h> using namespace std; int main(){ int a,c; char b; cin>>a; switch (a/10){ case 9 : cout<<"A"; break; case 8 : cout<<"B"; break; case 7: cout<<"C"; break; case 6: cout<<"D"; break; default: cout<<"E"; break; } }