为什么我错了,哪位大佬帮忙看看?

lyh098 仙辞 2023-12-16 8:47:34 1

#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; if (n >= 90) cout << "Great"; else if (n >= 70) cout << "Good"; else if (n >= 60) cout << "Average"; else cout << "Poor"; }

{{ vote && vote.total.up }}