Kacper_Michalak

Zadanie 3

Oct 27th, 2020 (edited)
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.36 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     string imie_1 = "Kacper";
  8.     string imie_2 = "Wiktoria";
  9.     string imie_3 = "Joanna";
  10.     string imie_4 = "Andrzej";
  11.     string imie_5 = "Dawid";
  12.  
  13.     cout<<imie_1<<endl;
  14.     cout<<imie_2<<endl;
  15.     cout<<imie_3<<endl;
  16.     cout<<imie_4<<endl;
  17.     cout<<imie_5<<endl;
  18.  
  19.     return 0;
  20. }
  21.  
Add Comment
Please, Sign In to add comment