Run ID:126490
提交时间:2025-07-19 16:11:39
#include<bits/stdc++.h> using namespace std;//命名空间 分号是英文分号 int main() { int x; cin >> x; if (x >= 90) { cout << "A"; } else if (x >= 80) { cout << "B"; } else if (x >= 70) { cout << "C"; } else if (x >= 60) { cout << "D"; } else { //x<60 cout << "E"; } return 0; }