楼上的那个是C语言版的,用的是FILE 类型,我给你这个纯C++版的,不用循环读取。
#include
#include
#include
using namespace std;
void main()
{
string str1;
ifstream infile("c:\\1.txt",ios::in);
if(!infile)
cout<<"文件打开错误"<
infile>>str1;
cout<<"读入的字符为: "<
记住:ifstream infile("c:\\1.txt",ios::in);中的“c:\\1.txt"就是文件在磁盘中的位置,你可以改为其他位置。
#include "stdio.h"
main()
{FILE *fout;
char ch;
int i;
if((fout=fopen("e:\\f14-1.txt","w"))==NULL)
{printf("open fail!\n"); exit(0);}
for(i=1;i<=10;i++)
{ch=getchar();
fputc(ch,fout);
}
printf("writh over!\n");
fclose(fout);
}
运行时只要你写入了字符后,去E盘看看就会有个记事本,产生。。你写了什么,,记事本里面就会写什么的了。