#include<stdio.h> int main() { int n; printf("enter a value :\n"); scanf("%d",&n); if(n%2==0) { printf("Even"); } else { printf("odd"); } }
No comments:
Post a Comment