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

C#编程

开发平台:

Visual C++

  1. #include <iostream.h>
  2. #include <fstream.h>
  3. void main()
  4. {
  5.   char str[128];
  6. int count=0;
  7. ifstream fin("19_1.cpp");
  8. fin.getline(str,sizeof(str));
  9.   while(!fin.eof()){
  10. count++;
  11. fin.getline(str,sizeof(str));
  12. }
  13. cout <<"the amount of lines of file 19_1.cpp is " <<count <<endl;
  14. }