在c中的战舰计划中遇到问题

时间:2016-12-07 02:32:56

标签: c loops for-loop while-loop

我正在尝试制作战舰计划。到目前为止,我的程序要求用户1输入他/她想要他们的船只的位置。然后用户2猜测他们认为船只在哪里。

我试图让我的程序重新提示用户2,如果他们第一次没有击中所有玩家1的船只。

我尝试在循环中放置一个while循环,但是每次我的程序崩溃时,那里的while循环现在也会崩溃。似乎没什么用。

#include <stdio.h>

int main(void)
{
    int board[2][2];
    int i, j;   //initialize loop variables
    int i2, j2; //initialize 2nd loop variables
    int i3, j3; // 3rd loop variables

    printf(" User 1: Enter a '1' where you want to place your ship and '0' where you do not.\n");

    /* these loops prompt the user to enter a 0 or 1 for each space in the 2d array depending on where they want their ship*/ 
    for(i = 0; i <= 1 ; i++)
    {
      for(j = 0 ; j <= 1 ; j++)
      {
          printf("space[%d][%d]: ", i, j);
          scanf("%d", &board[i][j]);
      }
    }

    while(board[i][j] == 1)
    { 
        /*used to prompt the user2 as long as user1 still has ships left*/
        int board2[2][2];
        printf("User 2: Enter a '1' where you think User 1 placed their ship and '0' where \nyou do not.\n");

        /* Asks user2 for their guesses */
        for(i2 = 0 ; i2 <= 1 ; i2++)
        {
          for(j2 = 0 ; j2 <= 1 ; j2++)
          {
              printf("space[%d][%d]:", i2, j2);
              scanf("%d", &board2[i2][j2]);
          }
        }

        for(i3 = 0 ; i3 <= 1 ; i3++)
        {
            //compares user1 input to user2 guess
            for(j3 = 0 ; j3 <= 1 ; j3++)
            {
                if(board[i3][j3] == 1 && board2[i3][j3] == 1)
                {
                    printf("Hit!\n"); // if the inputs match display "hit"
                    board[i][j] = 0;
                }
                else
                {
                    printf("Miss!\n"); // if no hit display miss
                }
            }
        }
    }

    return 0;
}

1 个答案:

答案 0 :(得分:1)

我认为,根据战舰计划的规则,我们为用户指定了一个随机放置船只的限制。如果用户未输入有效回复,您将继续重复此过程,直到输入有效回复或限制交叉。

在您的情况下,您希望重复此过程,直到user2找到所有船只没有任何限制。

我在你的代码中观察到一些问题: -

  1. 假设user1给出1 0 1 0而user2给出1 1 1 1,你的程序会给出成功的结果,因为你正在用user2输入搜索完整的战斗板。
  2. User2将持续运行,直到您[] []包含零值。
  3. 有些方面要改变你的程序设计 - :

    1. 限制user2查找该船。
    2. 不要使用user2输入搜索完整矩阵,而是使用user2输入检查战斗板的索引。
    3. 祝你好运。