
# include<iostream>
using namespace std;
void main()
{
cout<<"Enter any number";
cin>>a;
if(a==0)
cout<<"value of a is o"<<endl;
else if(a==2)
cout<<"Value of a is 2"<<endl;
else if(a==3)
cout<<"Value of a is 3"<<endl;
else
cout<<"Value of a is not 0,2 and 3"<<endl;
}
In this program,
we...