Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int age = 101;
- if(age>60){
- cout << "Wow You are old" "\n";
- if (age>100){
- cout << "Why are you still alive" "\n";
- }
- }else{
- cout << "You are young get a job" << "\n";
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment