0

所以我试图完成这个程序,我需要做的就是为这个纸牌游戏实现某种形式的用户输入,但到目前为止,我尝试过的所有东西都在无休止地循环(或者直到我用完数组中的元素)当我查看我的代码时,我不知道我在逻辑上做错了什么,这似乎是有道理的。

void players(int deck[])
{
    int x;
    int a; 

    a = 1;

     printf("Player 1 \n"); 
     printf("Your Hand is: \n"); 
     draw(deck, a);
     draw(deck, a);
     while(a = 1)
     {
     printf("What would you like to do: Press 1 to Draw. 2 to Stay. \n"); 
     scanf("%d" , &x); 
     if(x = 1)
     {
          draw(deck, a);
     }
     else
     {
         a--;
     }
     }
}

这是有问题的输入

void draw(int deck[SIZE], int a)
{
    int numCards = 10;
    int i; 
    int hand[numCards];
    int card;
    for(i = 0; i < numCards && top > 0; i++)
    {
        card = deck[top-1];     
        hand[i] = card; 
        top--;   
    }
    if(a != 0)
    printcards(card);
    else
    for(i = 0; i < numCards && top > 0; i++)
    printcards(card);

}

这是循环用于抽牌的函数(printcards 是一个单独的函数,只打印纸牌)玩家调用 draw 并且它可以工作,但如上所述,即使我按 2(假设退出)它也会无休止地调用牌. 所以我不完全确定我做错了什么。

4

2 回答 2

6

while(a = 1)

分配1a将导致它永远循环。您应该使用它==来进行比较。请打开编译器警告并修复它们,因为它们很容易发现这种情况。

顺便说一句,你的if(x = 1)陈述也有同样的错误......

于 2013-04-26T22:42:44.700 回答
2

您不检查相等性(运算符==),您实际上分配了值(运算符=)。

if(x = 1){}相当于x = 1; if(x) {}

并且if (x)等价if(x != 0)于整数

于 2013-04-26T22:42:38.643 回答