Advertisement
rikardoricz

zad3 Tomasz Świątek 3bTI/2

Oct 27th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     string imie1 = "Tomasz";
  9.     string imie2 = "Andrzej";
  10.     string imie3 = "Jakub";
  11.     string imie4 = "Adam";
  12.     string imie5 = "Bartosz";
  13.  
  14.     cout << "Imie: "<< imie1 << endl;
  15.     cout << "Imie: "<< imie2 << endl;
  16.     cout << "Imie: "<< imie3 << endl;
  17.     cout << "Imie: "<< imie4 << endl;
  18.     cout << "Imie: "<< imie5 << endl;
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement