刚刚写了个,自己看看吧,应该看得明白。
#include
#include
using namespace std;
void main()
{
fstream file;
file.open("s.txt",ios::in);
if(!file)
cout<<"file not founded"<
int pos = 0;
while(!file.eof())//是否到文件结尾
{
file>>a[pos];
pos++;
if(pos>=100)
break;
}
file.close();
for(int i = 0;i