#include<iostream> #include<fstream> using namespace std; int main() { char ch; fstream f("in.txt",ios::in); while(!f.eof()) { f>>ch; cout<<ch; } cout<<endl; f.close(); return 0; }
65,211
社区成员
250,514
社区内容
加载中
试试用AI创作助手写篇文章吧