题解 AC
2023-12-24 15:27:46
发布于:辽宁
12阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main(){
int n;
cin >> n;
int m;
cin >> m;
// 有点麻烦了,只不过不想回去打
if(n == 1 || n == 3 || n == 5 || n == 7 || n == 8 || n == 10 || n ==12){
// 1、3、5、7、8、10、腊,31天永不差(口诀)
if(m % 2 != 0) cout << "Play!"; // 如果为奇数天,可以出去玩
else cout << "Oh!No!"; // 相反,如果为偶数天,就需要写作业
}else{
if(m % 2 == 0) cout << "Play!"; // 如果为偶数天,可以出去玩
else cout << "Oh!No!"; // 相反,如果为奇数天,就需要写作业
}
return 0;
}
这里空空如也
有帮助,赞一个