Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. void question(string n)
  2. {
  3. string line;
  4. ifstream myfile("/Users/kirillgorbakon/Desktop/C++/millioner/millioner/test1.txt");
  5. if (myfile)
  6. {
  7. while (getline(myfile, line))
  8. {
  9. if (line == n)
  10. {
  11. myfile.close();
  12. }
  13. else
  14. {
  15. cout << line << endl;
  16. }
  17.  
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement