11_92.cpp
上传用户:zp_hc360
上传日期:2022-07-02
资源大小:241k
文件大小:1k
源码类别:

文件操作

开发平台:

Visual C++

  1. #include<iostream.h>
  2. #include<fstream.h>
  3. #include<stdio.h>
  4. #include<stdlib.h>
  5. void main()
  6. {
  7. int r; char c;
  8. fstream file;
  9. char fn[15],buf[100];
  10. cout<<"Input the file'name:";
  11. cin>>fn;
  12. file.open(fn,ios::nocreate|ios::in);  
  13. //针对文件后缀为(.txt  .h  .cpp .pas等)文件
  14. if(!file)
  15. {
  16. cout<<"The file you wanted open does NOT exist.";
  17. abort();  //#include<stdlib.h>
  18. }
  19. while(!file.eof())
  20. {
  21. r=0;
  22. while(!file.eof() && r<23)
  23. {
  24. file.getline(buf,100);
  25. cout<<buf<<endl;
  26. r++;
  27. }
  28. cout<<"press 'enter' key...";
  29. c=getchar();  //#include<stdio.h>
  30. }
  31. file.close();
  32. }