判断C盘test.txt文件中是否有内容
如果有,输出“有”
否则,输出“没有”
求代码!
判断C盘test.txt文件中是否有内容
如果有,输出“有”
否则,输出“没有”
求代码!
#include <iostream>
#include <fstream>
using namespace std;
#define FILENAME "Text.txt"
int main()
{
fstream in_file,out_file;
out_file.open(FILENAME,ios_base::out);
char ch[] = "Hello World";
int i = 0;
while (ch[i] != '\0')
{
out_file<<ch[i++];
}
out_file.close();
in_file.open(FILENAME,ios_base::in);
i = 0;
memset(ch,0,strlen(ch));
while (!in_file.eof())
{
in_file>>ch[i];
cout<<ch[i++];
}
cout<<endl;
in_file.close();
return 0;
}//直接给你个参考吧