0

我在这里打印一个二维数组,但我想将其格式化为这样打印。

[1 2 3
 4 5 6
 7 8 9]

我的问题是打印括号。

   cout<< "[";
    for(int i = 0; i<numrows(); i++)
    {
        for(int j = 0; j < numcols(); j++)
            cout << GetData(i,j) << " ";

        cout << endl;
    }
    cout << "]" <<endl;

但它是这样打印的。

[1 2 3
 4 5 6
 7 8 9
 ]

我是否应该做一个 if 语句来说明它是否是最后一个打印它?这是什么好方法。也许我只是让我昏昏欲睡。

4

4 回答 4

2

仅当后面有另一行时才打印换行符:

if (i != numrows() - 1) { cout << endl; }
于 2013-02-14T04:25:49.917 回答
2

只是不要输出endl最后一行:

cout<< "[";
for(int i = 0; i<numrows(); i++)
{
    for(int j = 0; j < numcols(); j++)
    {
        cout << GetData(i,j);
        if (j < numcols() -1)
        {
            cout << " ";
        }
    }

    if (i < numrows() -1)
    {
        cout << endl;
    }
}
cout << "]" <<endl;
于 2013-02-14T04:26:06.930 回答
1

尝试这个:

    cout << "[";
      for (int nRow = 0; nRow < 3; nRow++){
        for (int nCol = 0; nCol < 3; nCol++)
        {
            if(nRow!=0)
            cout <<" "<<GetData(i,j) <<" ";
            else
            cout<<GetData(i,j) <<"  ";
        }
        if(nRow!=2)
        cout<<endl;
    }

cout << "\b]" <<endl;  // backspacing so that there is no space b/w 9 and ]
于 2013-02-14T04:35:45.863 回答
0

尝试这个。
输出
| 1 2 3 |
| 3 4 5 |
| 3 4 2 |
| 2 3 1 |

int main()
{
    int arr[4][3];
    for(int i=0; i<4; i++)
    {
        for(int j=0; j<3; j++)
        {
            cout<<"Enter Value:";
            cin>>arr[i][j];
        }
    }

    cout<<"The Values you entered are..."<<endl<<endl<<endl;
    cout<<"|  ";
    for(int i=0; i<4; i++)
    {
        for(int j=0; j<3; j++)
        {
            cout<<arr[i][j]<<"  ";
        }
        cout<<"|";
        cout<<endl<<"|  ";
    }
    cout<<"\b\b\b\b ";
    getch();
}
于 2014-02-07T12:44:20.167 回答