知识点:
分支控制:分支控制
#include <iostream>
using namespace std;
int main() {
int score = 0;
while (cin >> score) {
if (score >= 60) {
cout << "Pass" << endl;
} else {
cout << "Fail" << endl;
}
}
return 0;
}



京公网安备 11010502036488号