CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <iostream>
using namespace std;
int main()
{
int sunday,monday,tuesday,wednesday,thursday,friday,saturday;
char choice;
cout<<"Enter the day"<<endl;
cin>>choice;
if(choice==sunday)
{
cout<<"No class for today!!! Go to sleep"<<endl;
cout<<"Enjoy";
}
else
{
if(choice == monday)
{
cout<<"Algebra....."<<endl;
cout<<"Timing: 08:50 To 11:20 "<<endl<<endl;
cout<<"C++ programing...."<<endl;
cout<<"Timing: 11:20 To 01:50 "<<endl;
}
else
{
if(choice == tuesday)
{
cout<<"Workshop Lab....."<<endl;
cout<<"Timing: 08:50 To 11:20 "<<endl<<endl;
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run