f0511.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0511.cpp
  3. // 打开main参数为名字的文件
  4. //=====================================
  5. #include<iostream>
  6. #include<fstream>
  7. using namespace std;
  8. //-------------------------------------
  9. int main(int argc, char** argv){
  10.   if(argc!=3)
  11.     cout<<"Usage: f0511 infile outfilen";
  12.   else{
  13.     ifstream in(argv[1]);
  14.     ofstream out(argv[2]);
  15.     if(in && out)
  16.       out<<in.rdbuf();
  17.   }
  18. }//====================================
  19.