Program in C++ to check whether a number is even or odd with the flowchart
In this tutorial, we will learn about the followings;
- Flowchart of even-odd number program.
- Program in C++ to check whether a number is even or odd?\
- Program in C to check whether a number is even or odd?
Algorithm of the program to check whether a number is even or odd
Step 1: Start
Step 2: Take Input and Read the Numbers
Step 3: Check that If Number % 2 == 0
If true ThenPrint : Your selected Number is an Even Number.
Else
Print : Your selected Number is an Odd Number.
Step 4: Finish
Flowchart of even-odd number program
Program in C++ to check whether a number is even or odd?
We can write and test the program by randomly take two values. one value that can false the condition and another one that can result in True.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#include<iostream> using namespace std; int main() { int number; cout<<"Enter The Number You Want To Check?"; cin>>number; if(number%2==0) { cout<<"Hi, Number is Even"; } else { cout<<"Hi, Number is ODD"; } } |
Output
Program in C to check whether a number is even or odd?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#include<stdio.h> #include<conio.h> void main() { int number; printf("Please Enter The Number You Want To check?"); scanf("%d",&number); if(number % 2 == 0) { printf("Hi, Number Is Even"); } else { printf("Hi, Number Is ODD"); } getch(); } |
Output
Video Lecture
C++ Exercise | If else Statement
- calculate the bill
- character is small, capital or a special character
- a number is even or odd
- 0 is a positive or negative number
- a positive and negative number
- Enter Range of numbers and replaced them
- a greater number among three numbers
- Armstrong Number
- ASCII code
- Find the Maximum value program in C++ (C Plus Plus).
- maximum number
- Maximum Number between two numbers
- Student Grade
- the number is divisible by 11 or 5 or not
- Triangle
- a triangle is an equilateral, isosceles or scalene
- Leap year
- character is an alphabet or not
- Grade Percentage
- character is an alphabet, digit, or special character
- character is an uppercase or lowercase.
- Weekdays
- a prime or composite number
- hours and minutes as AM or PM
- swap the values of two numbers
- update even to odd
- Profit Loss
- centimeter into meter and kilometer
- Triangle
- Salary
- Even odd with goto statement.
- area of the circle
Latest posts by Prof. Fazal Rehman Shamil (see all)
- List of Public service commissions - August 31, 2020
- Comparison of fee structure of Pakistani Universities - June 1, 2020
- Past Guess Paper of Auditing - May 12, 2020