Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cstdlib>
- #include <cstdio>
- using namespace std;
- int main()
- {
- int x; // wiek
- bool niepelnoletni; // to nie kurwa obiekt
- cout << "Podanie liczby mniejszej niz 0 lub wiekszej niz 116\nskutkuje zamnkieciem programu\nPodaj swoj wiek : ";
- cin >> x; // przyjecie danych z klawiatury
- niepelnoletni = (x < 18 && x>=0);
- if(x<0){
- cout<<"Liczba "<<x<<" jest za mala!\n";
- return 0;
- }
- if(x>116){
- cout << "Liczba "<< x << " jest za duza - nastepuje wyjscie z programu\n";
- return 0;
- }
- cout<<"Masz "<<x<<" lat - jestes "<<(niepelnoletni?"niepelnoletni!\n":"pelnoletni!\n");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement