C++读取TXT数据保存在数组中

数据保存在“input.txt”里,数据如下:
5
1 2
2 2
1 3
1 1
2 4
第一行是数据的个数,将其保存在一个int型变量中,从第二行开始是横纵坐标值,每行两个int型数中有空格,将每行数据(即横纵坐标)从文件读出,然后保存至一个数组中:

#include
#include
using namespace std;
void main()
{
int s[5][2];
ifstream fin(“a.txt”);
int x;
fin>>x;
for(int i=1;i {
for(int j=1;j<2;j++)
{
fin>>s[i][j];
}
}
ofstream fout(“input.txt”);
fout< for(int k=1;k {
for(int t=1;t<2;t++)
{
fout< }
}

}

#include
#include
#include
#include
using namespace std;
char data[100];//Or use the Vector(in STL)
int i=0;
int main()
{
ifstream is(“data.txt”,ios_base::in);
if(!is.is_open())
{
return EXIT_FAILURE;
}
else
{
while(is>>data[i])//if is>>data be false,it means no data or ‘\n’
{
i++;
}
}
cout<<“Finish for reading!”<

for(int j=0;j {
cout< }
cout<<“Data write complete!”< cout<<“Press any key to exit.”< getchar();
is.close();
return EXIT_SUCCESS;
}

从d.txt中读取每一行的数据并计算每一行的和,将每一行的和写入到dd.txt中:
#include
#include
using namespace std;
int main()
{
int cnt=0;
int a[20][3];
ifstream fin(“d.txt”, ios::in);
ofstream fout(“dd.txt”, ios::app);
if(!fin)
{
printf(“The file is not exist!”);
return -1;
}
while(!fin.eof())
{
fin >> a[cnt][0]>>a[cnt][1]>>a[cnt][2];
int sum = a[cnt][0] + a[cnt][1] + a[cnt][2];
fout< }
fin.close();
fout.close();
return 0;
}

C++读取TXT数据保存在数组中_第1张图片
C++读取TXT数据保存在数组中_第2张图片

你可能感兴趣的:(C++输入输出)