欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[C++]读取txt文件,存入进二维数组中(Xcode)

程序员文章站 2024-03-23 20:58:10
...

设置工作目录

点击

  • 菜单栏 - Product
  • Scheme
  • Edit Scheme
  • Run
  • Options
  • Working Directory
  • Use custom working directory:
  • 设置工作目录
    [C++]读取txt文件,存入进二维数组中(Xcode)

导入文件

将txt文件放入工作目录中即可。


编程

#include <iostream>
#include <fstream>

using namespace std;
int x_size=2,y_size=3; //设置二维数组行数与列数

int main(int argc, const char * argv[]) {
	fstream inf;
    inf.open("data.txt");
    if (!inf){
        cout<<"cannot find the file"<<endl;
    }
    //储存数据至二维数组中
    int a[x_size+1][y_size]; 
    for (int i=0; i <x_size+1; i++){
        for (int j=0; j<y_size; j++){
            infile >> a[i][j];
        }
    }

	//打印数组
    for (i=0; i<x_size; i++) {
        for (j=0; j<y_size; j++) {
            cout<<a[i][j];
        }
        cout<<"\n";
    }
	return 0;
}

文件与运行结果

[C++]读取txt文件,存入进二维数组中(Xcode)[C++]读取txt文件,存入进二维数组中(Xcode)

相关标签: C++ c++ xcode