题解一篇
2024-11-23 13:50:24
发布于:浙江
0阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
int a[13]={0,1,0,1,0,1,0,1,1,0,1,0,1};
int x,n;
cin >> x >> n;
if(a[x]==1){
if(n%2==0) cout << "Oh!No!";
else cout << "Play!";
}else{
if(n%2==0) cout << "Play!";
else cout << "Oh!No!";
}
}
这里空空如也
有帮助,赞一个