Skip to content
On this page

DO NOT FAIL

入力された複数の点数を受け取って、59点以下ならFailedと出力しよう。また、-1が入力されたらPassed!と出力して終了しよう。

Answer
cpp
#include <iostream>
#include <string>
using namespace std;

int main() {
    while(true) {
        int score;
        cin >> score;
        if (score == -1) {
            cout << "Passed!" << endl;
            break;
        }
        if (score < 60) {
            cout << "Failed" << endl;
        }
    }
    return 0;
}