【问题标题】:Debugging my c program, number guessing game调试我的c程序,猜数字游戏
【发布时间】:2013-03-31 04:29:12
【问题描述】:

我需要帮助调试这个程序,但我不知道出了什么问题。我正在使用 putty 和 Vi 编辑器来运行我的程序。这是我的代码:

#include <stdio.h>
#include <time.h>
#include <stdlib.h>
#include <malloc.h>

int main(void) { 

    int playerNumber = 0;
    int number = 0;
    int playerInput = 0;    
    int guess = 0;
    char input;
    char str[6] = {0};
    int playerA = 0;
    int playerB = 0;
    int passA = 3;
    int passB = 3;
    int i = 0;
    int playerTurn = 0;


    srand(time(NULL));
    playerNumber = 1 + rand() % 2; /* Random number is generated */

    printf("\nPlayer %d goes fist\n", playerNumber);

    printf("Player Number?\n");  


    while (playerNumber != playerInput) {
        scanf("%d", &playerInput);

        if (playerNumber != playerInput) printf("You Have to wait your turn.\nPlayer number?\n");

        playerNumber = playerA;

        if (playerA = 1) playerB = 2;
        else playerB = 1;

        srand(time(NULL));
        number = 0 + rand() % 100; /* Random number is generated */

        printf("Enter Your Guess, 0 - 100 or Pass: "); /* Input your guess */

        while(number != guess) {

        for(i = 1; i < 1000; i++) {
            if (i%2 == 1) playerTurn = playerA;
            else PlayerTurn = playerB;
            scanf("%s", str);

            if (strcmp(str, "pass") == 0) printf("Player Number?\n");
            else {
                guess = atoi(str);
                if(guess < number) /* if the guess is lower, output: the guess is to low */
                    printf("Your guess was to low.\n Player Number:\n ");

                else if(guess > number) /* if the guess is higher, output: the guess is to high */
                    printf("Your guess was to high.\n Player Number:\n ");

                else /* is the guess is equial to the random number: Success!! */
                    printf("Yes!! you got it!\n");
                return 0;
            }
        }
    }
}

}

这是我得到的错误: project2total.c:在函数main': project2total.c:49: error:PlayerTurn'未声明(在这个函数中首次使用) project2total.c:49:错误:(每个未声明的标识符只报告一次 project2total.c:49:错误:对于它出现的每个函数。)

【问题讨论】:

    标签: c


    【解决方案1】:

    C 区分大小写。在您的函数中,没有声明 PlayerTurn,但您似乎声明了 playerTurn。假设这实际上是您要引用的变量,只需将大写 P 更正为小写即可。 :)

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-11-20
      • 1970-01-01
      • 1970-01-01
      • 2014-11-25
      • 2016-06-21
      相关资源
      最近更新 更多