Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. int x;
  2.  
  3. cin >> x;
  4.  
  5. if (x==10)
  6. cout << "Hello";
  7.  
  8. if (x!=10)
  9. cout << "Hey";
  10.  
  11. int x;
  12.  
  13. cin >> x;
  14.  
  15. if (x==10)
  16. cout << "Hello";
  17.  
  18. else
  19. cout << "Hey";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement