简简又单单
2025-02-23 20:22:48
发布于:浙江
0阅读
0回复
0点赞
#include<iostream> //导入头文件 输出键是F11
using namespace std;//说明使用的命名空间是 标准命名空间(std)
int main(){//主函数 程序唯一入口
int Chinse,Math;
cin>>Chinse>>Math;
if(Chinse<60 && Math >=60||Chinse>=60 && Math <60){
cout<<'1';
}
else{
cout<<"0";
}
return 0;//程序出口(标志着程序结束,返回值为0)
}
这里空空如也
有帮助,赞一个