Guest User

SMALEC

a guest
Feb 12th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. string first_name, last_name, country, gender;
  9. int id, points;
  10.  
  11. ifstream odczytDane ("wyniki.txt");
  12. ofstream zapisDane ("output.txt");
  13.  
  14. for(int i=1; i<=1000 ;i++)
  15. {
  16. odczytDane>>id>>first_name>>last_name>>country>>gender>>points;
  17. if (points=100)
  18. {
  19. cout<<"Wygrał "<<first_name<<endl;
  20. }
  21.  
  22. }
  23.  
  24. odczytDane.close();
  25.  
  26. return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment