Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int x;
- cout << "Podaj swoj wiek: " << endl;
- cin >> x ;
- if(x > 18)
- {
- x = x - 18;
- cout << "Jestes pelnoletni od: " << x << " lat" << endl;
- }
- else if(x < 18)
- {
- x = 18 - x;
- cout << "Bedziesz pelnoletni za: " << x << " lat" << endl;
- }else if(x == 18)
- {
- cout << "Wlasnie w tym roku stales sie pelnoletni" << endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment