Advertisement
Guest User

1

a guest
Dec 15th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     string imie;
  8.     cout<<"podaj imie"<<endl;
  9.     cin>>imie;
  10.  
  11.     cout<<"\n";
  12.     for (int i=0; i<5; i++)
  13.         cout<<imie<<endl;
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement