19_1.cpp
Upload User: puke2000
Upload Date: 2022-07-25
Package Size: 912k
Code Size: 0k
Category:

CSharp

Development Platform:

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. }