Advertisement
Floydgtm

Untitled

Sep 15th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6. int age;
  7. char gender;
  8.  
  9. printf("Please Enter your Age: \n");
  10. scanf("%d", &age);
  11.  
  12. printf("What is you gender male/female? \n");
  13. scanf(" %c", &gender);
  14.  
  15.  
  16. if(age >=18){
  17. printf("You are allowed to enter the site");
  18. }else
  19. printf("GO Masturbate");
  20.  
  21.  
  22. if(gender=='male'){
  23. printf(" dude!");
  24. }else
  25. printf(" m'lady!");
  26. return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement