Facebook
From ja, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 238
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int rok,wiek;
  8.     cout << "Podaj rok urodzenia" << endl;
  9.     cin >> rok;
  10.     wiek=2018-rok;
  11.     cout << "twoj wiek: " << wiek << endl;
  12.     if (wiek>=18)
  13.         cout << "jestes pelnoletni" << endl;
  14.     else
  15.         cout << "jestes nieletni" << endl;
  16.     return 0;
  17. }
  18.