Run ID:149523
提交时间:2026-03-13 20:34:03
#include <iostream> using namespace std; int main() { int score; cin >> score; if (score >= 90) { cout << "A" << endl; } else if (score >= 70) { cout << "B" << endl; } else if (score >= 60) { cout << "C" << endl; } else { cout << "D" << endl; } return 0; }