Advertisement
Kawsar_Hossain

problem_5

May 22nd, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.17 KB | None | 0 0
  1. //Problem-5
  2. #include<stdio.h>
  3. int main()
  4. {
  5.     int a;
  6.     scanf("%d", &a);
  7.     if(a%2==0)
  8.         printf("EVEN\n");
  9.     else
  10.         printf("ODD\n");
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement