标签:int cout 而且 name 不能 names 博弈 棋盘 using
题目:一个n*n的棋盘,每一次从角落出发,每次移动到相邻的,而且没有经过的格子上。
谁不能操作了谁输。
思路:看起来就跟奇偶性有关
走两步就知道了
#include <iostream> using namespace std; int main() { int n; while(cin>>n&&n) { if((n*n-1)%2!=0) cout<<"8600"<<endl; else cout<<"ailyanlu"<<endl; } return 0; }
标签:int cout 而且 name 不能 names 博弈 棋盘 using
原文地址:http://www.cnblogs.com/nefu929831238/p/6129513.html