Guest User

Untitled

a guest
Feb 13th, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5. int main()
  6. {
  7.     int age = 101;
  8.  
  9.     if(age>60){
  10.             cout << "Wow You are old" "\n";
  11.  
  12.  
  13.  
  14.            if (age>100){
  15.             cout << "Why are you still alive" "\n";
  16.  
  17.            }
  18.  
  19.  
  20.     }else{
  21.         cout << "You are young get a job" << "\n";
  22.  
  23.     }
  24.  
  25.  
  26.     return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment