Advertisement
rikardoricz

zad4 Tomasz Świątek 3bTI/2

Oct 27th, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     string imie;
  8.     int wiek;
  9.  
  10.     cout << "Podaj swoje imie" << endl;
  11.     cin >> imie;
  12.     cout << "Podaj swoj wiek" << endl;
  13.     cin >> wiek;
  14.  
  15.     cout << "Mam na imie: " << imie << endl;
  16.     cout << "Mam na imie: " << imie << " i mam " << wiek << " lat" << endl;
  17.     return 0;
  18. }
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement