题目:一个n*n的棋盘,每一次从角落出发,每次移动到相邻的,而且没有经过的格子上。
谁不能操作了谁输。
思路:看起来就跟奇偶性有关
走两步就知道了
#include <iostream> using namespace std; int main()
{
int n;
while(cin>>n&&n)
{
if((n*n-)%!=)
cout<<""<<endl;
else
cout<<"ailyanlu"<<endl;
}
return ;
}
2022-09-23 18:54:34
题目:一个n*n的棋盘,每一次从角落出发,每次移动到相邻的,而且没有经过的格子上。
谁不能操作了谁输。
思路:看起来就跟奇偶性有关
走两步就知道了
#include <iostream> using namespace std; int main()
{
int n;
while(cin>>n&&n)
{
if((n*n-)%!=)
cout<<""<<endl;
else
cout<<"ailyanlu"<<endl;
}
return ;
}