Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include<stdlib.h>
- #include<conio.h>
- void main()
- {
- int n;
- system("cls");
- {
- printf("Enter an integer\n");
- scanf("%d",&n);
- }
- if(n%2 == 0)
- {
- printf("Even number\n");
- }
- else
- {
- printf("Odd number\n");
- }
- getch();
- }
Advertisement
Add Comment
Please, Sign In to add comment