Guest User

Untitled

a guest
Jun 24th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. struct zestaw {
  2. string imie;
  3. int wiek;
  4. };
  5.  
  6. int main()
  7. {
  8.  
  9. cout<<"podaj liczbe ludzikow: ";
  10. cin>>liczba;
  11. zestaw *wzestaw = new zestaw[liczba];
  12. for (int i=0; i<liczba; i++){
  13.  
  14. cin>>wzestaw[i].imie;
  15.  
  16. }
  17. for (int i=0; i<liczba; i++){
  18. cout<<wzestaw[i].imie;
  19. }
Add Comment
Please, Sign In to add comment