chiva13

Untitled

Aug 28th, 2014
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdio.h>
  3. #include <fstream>
  4. #include <string>
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9. std::string string1;
  10. std::ifstream ist("input.txt");
  11.  
  12. while(ist.eof()==false)
  13. {
  14. std::getline (ist,string1);
  15. std::cout << string1<<"\n";
  16. }
  17. return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment