Advertisement
Guest User

Untitled

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