#include<iostream>
#include<fstream>
using namespace std;
int main()
{
string t_sFileName;
outfile.open(t_sFileName.c_str(), ofstream::out|ofstream::trunc);
for ( i =0; i < 10; i++ )
{
outfile << i <<endl;
}
ifstream infile;
infile.open("D:\\a.txt");
//将.txt文件中的数字写到数组中并显示出来
int a[10];
for(i=0; i<10; i++)
{
infile>>a[i];
cout<<a[i]<<endl;
}
#include<fstream>
using namespace std;
int main()
{
string t_sFileName;
t_sFileName="D:\\a.txt"; //在D盘新建了一个.txt文件
outfile.open(t_sFileName.c_str(), ofstream::out|ofstream::trunc);
//向文件中写入数字0到10
int i;for ( i =0; i < 10; i++ )
{
outfile << i <<endl;
}
ifstream infile;
infile.open("D:\\a.txt");
//将.txt文件中的数字写到数组中并显示出来
int a[10];
for(i=0; i<10; i++)
{
infile>>a[i];
cout<<a[i]<<endl;
}
}