LZ意思是把TXT格式下的那些数据`粘贴到C语言编程环境下`
我也是新人`也想知道
#include <iostream>
#include <fstream>
using namespace std;
int main ()
{
ifstream infile("filename.txt",ios::in);
while(!infile)
cerr<<"count open the file!";
char ch;
for (int i = 0; (infile.get(ch)) != '\0'; i++)
cout<<ch<<" ";
getchar();
return 0;
}
这个可以读入字符
稍微改一下 就可以了!