#include
#include
using namespace std;
int main(){
ifstream ifs("txt.txt");//在你的h和cpp文件目录里添加txt.txt文件,里面写点东西(我写了数字,第一行为1,第二行为2,的三行为3)
int a[100];
int i = 0 , k = 15;
while(!ifs.eof()){
ifs>>a[i];
cout< a[i] = k ++; //修改内容
cout< }
return 0;
}
//你也可以写字符串,但程序就要修改了
现在在d盘建立一个txt文件右:d:\women.txt;并在里面随意输入数据,保存
代码如下:
#include
#include
using namespace std;
int main()
{
char ch;
ifstream inf("d:\\women.txt",ios::binary);
while(inf.get(ch))
cout<
return 0;
}
欢迎采纳