Advertisement
Mahfuz100

Untitled

May 17th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a;
  5. printf("Enter the Number : ");
  6. scanf("%d",&a);
  7. if(a%2 ==0)
  8. {
  9. printf("EVEN\n");
  10. }
  11. else
  12. {
  13. printf("ODD\n");
  14. }
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement