2019-03-12 取石子游戏

#include
#include
#include
using namespace std;
bool dfs(int a,int b)
{
    if(a=1;k--)
    {
        if(!dfs(b,a-k*b)) return true;
    }
    return false;
}
int main(void)
{
    int a,b;
    while(true)
    {
        cin>>a>>b;
        if(a==0&&b==0) break;
        bool res = dfs(a,b);
        if(res==true) printf("win\n");
        else printf("lose\n");
    } 
    return 0;
}

你可能感兴趣的:(2019-03-12 取石子游戏)