c++ - 如何在 C++ 中打印二维数组?

标签 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;
        }           
    }
}    

最佳答案

您在每个数字后打印 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;,这样其他函数和其他文件就不会受到影响。

关于c++ - 如何在 C++ 中打印二维数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12311149/

相关文章:

javascript - JavaScript 中图像数组 "document.write()"的问题

c++ - 是解析 C++ 的模板实例化部分

c++ - Mex 找不到 g++

结构中动态数组中结构中动态分配数组的 C 语法

c++ - 我如何知道 k-server 动态解决方案的最佳路径位于数组 cost[ i ][ j ][ k ][ t ] 中的什么位置?

javascript - 数组在随机化时添加维度

c - 将消息存储在二维数组中的函数(在 C 编程中)

python - 将 ndarray 转换为字符串并逐行打印

c++ - Opencv如何从相机读取单帧

c++:成员类之间的构造函数依赖性