题解 | #及格分数#
及格分数
https://www.nowcoder.com/practice/56513524333148b38945e1989bc7df4e
#include<iostream>
using namespace std;
int main()
{
int a;
while(cin>>a)
{
if(a>=60)cout<<"Pass";
else cout<<"Fail";
cout<<endl;
}
return 0;
}
牛客语法编程题题解 文章被收录于专栏
主要包括牛客的一些语法题的题解

