0

したがって、私のコードの前提は、.txt から 2 次元配列を読み取ることです。配列はゲーム ボードですが、最初の 2 行がボードのサイズを決定します。それを読み込んだ後、文字「U」がどこにあるかを見つけて、配列を表示しますが、Uとその周りのものだけを表示します。問題は、正しいサイズを印刷する配列を取得できず、U を表示するためのコードも機能しないことです。

ifstream inputFile;
int boardSizeRow;
int boardSizeCol;
inputFile.open("C:\\Users\\Michael\\Desktop\\fileboard2.txt");
inputFile >> boardSizeRow;
inputFile >> boardSizeCol;
inputFile.get();


char gameBoard[20][20];
for (int row = 0; row < boardSizeRow; row++)
{
    for (int col = 0; col < boardSizeCol; col++)
    {
        gameBoard[row][col] = inputFile.get();
    }
}


for (int row = 0; row < boardSizeRow; row++) //////////////TO TEST PRINT
{
    for (int col = 0; col < boardSizeCol; col++)
    {
        cout << gameBoard[row][col];
    }
}

cout << endl;
cout << endl;

const int ROWS = 20; 
const int COLS = 20;
bool toPrint[ROWS][COLS] = {false}; 
for (int i = 0; i < ROWS; i++ )
{
    for (int j = 0; j < COLS; j++)
    {
       if (gameBoard[i][j] == 'U')
       {
            //set parameters around:
            toPrint[i][j] = true; 
            toPrint[i][j-1] = true; //West
            toPrint[i][j+1] = true; //East
            toPrint[i-1][j] = true;  //North
            toPrint[i+1][j] = true; //South
       }
   }
}
for (int i = 0; i < ROWS; i++ )
{
    for (int j = 0; j < COLS; j++)
    {
       if (toPrint[i][j])
       {            
           cout << gameBoard[i][j] ;
       }
       else
       {
           cout <<"0";
       }
    }
    cout <<endl;
 }
cout << endl; 

return 0;

. txtファイル::

20
20
WWWWWWWWWWWWWWWWWWWW
  W GO  W          W
W WW      w    S   W
W H W   GW  w      W
WPW  WW          G W
 WK       W        W
W W W  W    w   w  W
  WK WU            W
    SW      w  w   W
           W       W
    w    W       G W
  G    W       w   W
D   wwwww          W
         K   w  D  W
w w   W w   w      W
    ww  w    WWWWWWW
  G        w       W
    ww  w S    w   W
   WWW      G      W
WWWWWWWWWWWWWWWWWWWW
4

1 に答える 1

0

txt の改行記号を読み忘れています。gameBoard 配列を見ると、2 行目の最初の項目が 10' ' であることがわかります。

変更されたコード:

for (int row = 0; row < boardSizeRow; row++)
{
    for (int col = 0; col < boardSizeCol; col++)
    {
        gameBoard[row][col] = inputFile.get();
    }
    inputFile.get();//read new line symbol here
}


for (int row = 0; row < boardSizeRow; row++) 
{
    for (int col = 0; col < boardSizeCol; col++)
    {
        cout << gameBoard[row][col];
    }
    cout<<endl;//output new line here
}
于 2013-04-11T23:44:59.393 に答える