分析:

逻辑简单,读入多行数据后挨个判断该分值是否满足60分即可。

题解:

#include <bits/stdc++.h>
using namespace std;

int main() {

    int score = 0;
    //循环读入成绩
    while(scanf("%d", &score) != EOF) {
        //判断成绩是否大于60分,反之输出不及格
        if(score >= 60)
            printf("Pass\n");
        else
            printf("Fail\n");
    }
    return 0;
}

总结:

简单逻辑判断加多行读入即可ac。