Guest User

Untitled

a guest
Jul 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5.  
  6.     while(1)
  7.     {
  8.         int age;
  9.         printf("\nEnter your age: ");
  10.         scanf("%d", &age);
  11.  
  12.           if(age >= 14)
  13.         {
  14.             printf("Too old for Enari.");
  15.         }
  16.         else
  17.         {
  18.             printf("Wuts yo numba girl?");
  19.         }
  20.     }
  21.    
  22. }
Add Comment
Please, Sign In to add comment