Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstring>
  3. #include <stdio.h>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9. string imie_uzytkownika;
  10. string nazwisko_uzytkownika;
  11. cout<<"podaj swoje imie:";
  12. cin>>imie_uzytkownika;
  13. cout<<"Podaj nazwisko";
  14. cin>>nazwisko_uzytkownika;
  15.  
  16. string dane_uzytkownika = imie_uzytkownika +" "+ nazwisko_uzytkownika;
  17. cout<<"nazywasz sie: "<<dane_uzytkownika;
  18. return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement