MeehoweCK

Untitled

Jun 28th, 2021
870
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     cout << "Wpisz ile masz lat: ";
  8.     int wiek;
  9.     cin >> wiek;        // pobiera wpisaną w konsoli wartość do zmiennej wiek
  10.     cout << "Wpisz swoje imie: ";
  11.     string imie;
  12.     cin >> imie;
  13.     cout << "Masz na imie " << imie << ", masz " << wiek << " lat.\n";  // '\n' działa tak samo jak endl
  14.     return 0;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment