Guest User

Untitled

a guest
Nov 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int x
  6. printf("How old are you? ");
  7. scanf("%d", &x);
  8. if(x <= 50);
  9. printf("Your young. ");
  10. else if (x = 55-65 );
  11. printf("Your getting old. ");
  12. else if(x >= 70);
  13. printf("OLD PERSON ALERT!");
  14. getchar();
  15. return 0;
  16. }
Add Comment
Please, Sign In to add comment