下面代码读文件的时候,注意会读回车。 

#include<iostream>
#include<algorithm>
#include <direct.h>
#include<fstream>

using namespace  std;


int a[1005];
int b[1005];
int main()
{
	/*char buf1[256];
	_getcwd(buf1, sizeof(buf1));
	printf("%s\n", buf1);*/


	ifstream myfile("myfile.txt");
	if (!myfile)
		cerr << "error_O_L" << endl;
	int i = 0;
	while (!myfile.eof()) //直到文件结尾
	{
		myfile >> a[i];
		i++;
	}
	myfile.close();
	for(int j = 0;j<i;j++)
		cout << a[j] << endl;
	return 0;
}

 

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐