- //=====================================
- // f0211.cpp
- // 拷贝文件
- //=====================================
- #include<fstream>
- using namespace std;
- //-------------------------------------
- int main(){
- ifstream in("a.in");
- ofstream out("a.out");
- for(string str; getline(in, str); )
- out<<str<<endl;
- }//====================================