如何在C ++中打印2D数组?

时间:2012-09-07 03:00:51

标签: c++ arrays multidimensional-array revision

我正在尝试使用数组在屏幕上打印文本文件,但我不确定为什么它不会出现在文本文件中。

文本文件:

1 2 3 4
5 6 7 8

应用丢弃功能后,屏幕上显示如下:

1
2
3
4
5
6
7
8

代码:

#include <iostream>
#include <fstream>
#include <stdlib.h>
#include <string>

using namespace std;

const int MAX_SIZE = 20;
const int TOTAL_AID = 4;

void discard_line(ifstream &in);
void print(int print[][4] , int size);

int main()
{
    //string evnt_id[MAX_SIZE]; //stores event id
    int athlete_id[MAX_SIZE][TOTAL_AID]; //stores columns for athelete id
    int total_records;
    char c; 
    ifstream reg;
    reg.open("C:\\result.txt");

    discard_line(reg);
    total_records = 0;

    while( !reg.eof() )
    {
        for (int i = 0; i < TOTAL_AID; i++)
        {
            reg >> athlete_id[total_records][i] ;//read aid coloumns
        }
        total_records++;
        reg.get(c);
    }

    reg.close();

    print(athlete_id, total_records);

    system("pause");
    return 0;
}

void discard_line(ifstream &in)
{
    char c;

    do
        in.get(c);
    while (c!='\n');
}

void print(int print[][4] , int size)
{    
    cout << " \tID \t AID " << endl;
    for (int i = 0; i < size; i++)
    {
        for (int j = 0; j < TOTAL_AID; j++)
        {
            cout << print[i][j] << endl;
        }           
    }
}    

3 个答案:

答案 0 :(得分:13)

您在每个号码后打印std::endl。如果您希望每行有1行,则应在每行后打印std::endl。例如:

#include <iostream>

int main(void)
{
    int myArray[][4] = { {1,2,3,4}, {5,6,7,8} };
    int width = 4, height = 2;

    for (int i = 0; i < height; ++i)
    {
        for (int j = 0; j < width; ++j)
        {
            std::cout << myArray[i][j] << ' ';
        }
        std::cout << std::endl;
    }
}

另请注意,在文件开头写using namespace std;被认为是不好的做法,因为它会导致某些用户定义的名称(类型,函数等)变得模糊不清。如果您想避免使用std::的前缀,请在小范围内使用using namespace std;,以便其他功能和其他文件不受影响。

答案 1 :(得分:1)

错过“endl”不仅是错误。 由于调用函数discard_line(reg),程序还将跳过源文件中的第一行,因此您只能获取其他数据(5 6 7 8)。根本没有必要使用该功能。 另外,确保初始化数组并检查数组的边界,例如MAX_SIZE,以保证输入数据不会溢出数组。

答案 2 :(得分:0)

您可以这样做

#include <iostream>

int your_array[2][4] = { 
  {1,2,3,4}, 
  {5,6,7,8}  
};

using namespace std;

int main() {

    // get array columns and rows
      int rows =  sizeof your_array / sizeof your_array[0]; 
      int cols = sizeof your_array[0] / sizeof(int); 
      
      // Print 2d Array
     cout << "your_array data "<<endl<<endl;
    for (int i = 0; i < rows; ++i)
    {
        for (int j = 0; j < cols; ++j)
        {
            std::cout << your_array[i][j] << std::endl;
        }
     //   std::cout << std::endl;
    }

}

输出

1
2
3
4
5
6
7
8