MeehoweCK

Untitled

Mar 19th, 2021
619
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int wiek;
  8.     cout << "Napisz ile masz lat: ";
  9.     cin >> wiek;                      // pobranie wartości od użytkownika (z konsoli)
  10.     cout << "Masz " << wiek << " lat." << endl;
  11.     if(wiek >= 18)
  12.         cout << "Jestes osoba pelnoletnia.\n";      // '\n' działa tak samo jak endl
  13.     return 0;
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment