Program 5:
#includeExplanation:<stdio.h> main() { int i; printf("Enter a Number to know whether it is even or odd\n"); scanf("%d",&i); if(i%2==0) { printf("The number %d is Even",i); } else { printf("The number %d is Odd",i); } printf("\n"); }
- Here we declared an integer 'i'.
- Then we took the input from user using scanf statement.
- As we know modulus operator is used to return the reminder of two values as(10%3=1, 12%2=0).
- So if you do modulus with 2 then the reminder would be 'zero' for Even numbers and '1' for Odd numbers.
- If we divide 'i' with '2' using mod operator then depending upon condition the respective 'printf' will be executed.
No comments:
Post a Comment