Advertisement
MeehoweCK

Untitled

Aug 17th, 2018
218
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.     int rok;
  8.     cout << "Napisz w ktorym roku sie urodziles(as): ";
  9.     cin >> rok;
  10.     int wiek = 2018 - rok;
  11.  
  12.     cout << "Masz " << wiek << " lat" << endl;
  13.  
  14.     if(wiek >= 18)
  15.         cout << "Jestes juz pelnoletni" << endl;
  16.     else
  17.         cout << "Jeszcze nie jestes pelnoletni" << endl;
  18.  
  19.     return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement