Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. void Fill(struct zmones mas [])
  2. {
  3. ifstream file ("Gyventojai.txt");
  4. int n;
  5. file >> n;
  6. for(int i = 0; i < n; i++){
  7. file >> mas[i].Vardas; file >> mas[i].Pavarde;
  8. file >> mas[i].metai; file >> mas[i].menuo; file >> mas[i].diena;
  9. file >> mas[i].miestas; file >> mas[i].lytis;
  10. }
  11. file.close();
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement