Write a C++ program to input day number and print weekday by using the if-else statement.
Flowchart of the if-else program to input day number and print weekday
C++ Source Code of the if-else program to input day number and show the weekday
#include<iostream>
using namespace std;
int main()
{
int week;
cout<<"Enter the number of the day"<<endl;
cin>>week;
if (week==1)
cout<<"Monday";
else if (week==2)
cout<<"Tuesday";
else if (week==3)
cout<<"Wednesday";
else if(week==4)
cout<<"Thursday";
else if(week==5)
cout<<"Friday";
else if(week==6)
cout<<"Saturday";
else if(week==7)
cout<<"Sunday";
else
cout<<"The number is invalid";
}
Output
Enter the number of the day
6
Saturday


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



