C++和Python成绩
Posted zhuhaoran0330
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++和Python成绩相关的知识,希望对你有一定的参考价值。
输出描述
若该生恰好只有一门课不及格,输出1;否则输出0。
样例
输入
50 80
输出
1
代码
#include<iostream>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
if(a>=60&&b<60||a<60&&b>=60)
{
cout<<1<<endl;
}
else
{
cout<<0<<endl;
}
return 0;
}
以上是关于C++和Python成绩的主要内容,如果未能解决你的问题,请参考以下文章