Advertisement
hopingsteam

Untitled

Jan 31st, 2020
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include    <iostream>
  2. #include    <fstream>
  3.  
  4. using namespace std;
  5.  
  6. ifstream fin("numere8.in");
  7.  
  8. int main()
  9. {
  10.     int x;
  11.     while(fin >> x)
  12.     {
  13.         cout << "Am citit: " << x;
  14.     }
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement