Advertisement
Ola_Imiolczyk

Zad3

Oct 30th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6.  
  7. {
  8. string a="Aleksandra";
  9. string b="Julia";
  10. string c="Weronika";
  11. string d="Jakub";
  12. string e="Norbert";
  13.  
  14.     cout << "Wyswietl imie:"<<a<< endl;
  15.     cout << "Wyswietl imie:"<<b<< endl;
  16.     cout << "Wyswietl imie:"<<c<< endl;
  17.     cout << "Wyswietl imie:"<<d<< endl;
  18.     cout << "Wyswietl imie:"<<e<< endl;
  19.  
  20.  
  21.     return 0;
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement