answersLogoWhite

0


Best Answer

if remainder (x/2) = 0 then even else odd

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Find the number is even or odd using if else?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you find a number is odd or even numbers using flowchart?

Get number Find modulo 2 of number If the result is zero, number is even Else number is odd


How do you draw a Flowchart to find whether the given number is odd or even using counter?

first we write start and then read number and after that check the number is totaly divide by 2 or not if number is totally divide by 2 then number is even else number is odd.


Can identify the odd and the even in the java script using HTML?

Here is a JavaScript option for determining if a number is odd or even. It even lets you know if the number is zero (if you want zero to be neither odd nor even). var n = prompt("Enter a number to identify as odd or even", "Type your number here"); n = parseInt(n); if (isNaN(n)) { alert("Please Enter a Number"); } else if (n == 0) { alert("The number is zero"); } else if (n%2) { alert("The number is odd"); } else { alert("The number is even"); }


Any integer is input through the keyboard write a c program to find out whether it is an odd number or even number?

printf(\n "ENTER THE NUMBER\t"); scanf{"%d",&a); while(a!=0); { r=a%2; if(r==0) printf("\n\n THE NUMBER IS EVEN \t"); else printf("\n\n THE NUMBER IS ODD \t"); printf ("\n ENTER THE NUMBER \t"); scanf("%d",&a); } getch(); }


Write a c program to find the oddor even numbers using bitwise operators?

#include<stdio.h> main() { int n; printf("enter any number:"); scanf("%d",&n); if(n&1==1) printf("number is odd\n"); else printf("number is even\n"); getch(); } by rams malula phone number :00919986084895


How do you make a program in Visual studio To know the number whether its Even or Odd?

using system; { public static void main(string[] args) { int n; n=int.parse(console.ReadLine()); if(n%2==0) console.WriteLine("Even number"); else console.WriteLine("Odd number"); } }


What kind of a form factor is E210822?

It could be Micro ATX or ATX or even something else. This number appears on a lot of Intel motherboards. The number you really need to find is the AA (Altered Assembly) number.


Find whether a number is prime or not using c?

It should not be even (except for 2), and must not be dividable with any odd number between 3 and its square-root.


Give the meaning of even number?

An even number is a multiple of 2. If you divide a number by 2 (using integer division), and the remainder is zero, then the number is even.


How do you determine if a number is even?

If the number ends in 2,4,6,8, or 0, then the number is even. If the number ends in 1,3,5,7, or 9, then the number is odd. when a num is / by 2 if ans is in real num then the digit is even or else odd


What is the largest even number using digits 135689?

985,316


How do you find the median of an even set of number?

Find the average. That is, add all of the even numbers together, then divide that by the number of even numbers.