// My Project Work is Going On.....
#include<iostream.h>
#include<conio.h>
#include<process.h>
void main()
{
clrscr();
int ch,chl;
float a,b,c;
cout<<"\n\t\t\tWelcome To My Project "<<endl;
cout<<"\t\t************************************"<<endl;
cout<<"\t\t\t\t Designed by -> Mr. Manish Gupta"<<endl;
cout<<"################################################################################";
cout<<"################################################################################"<<endl;
cout<<"\t\tWhich Option Do You want to select ?"<<endl;
cout<<"\t1. About"<<endl;
cout<<"\t2. List of Project"<<endl;
cout<<"\t3. Source Code"<<endl;
cout<<"\t4. Exit"<<endl;
cout<<"Please Enter ! Which Function Do You Want to perform { 1 - 4} ->" ;
cin>>ch;
if(ch==1)
{
cout<<"Hey ! I am Your friend Mansih Gupta. This Project is designed by me. I am the Student of class BCA (18 - 21) of course From Nilamber Pitamber University medininagar in kind of G.L.A college daltonganj"<<endl;
}
if(ch==4)
{
exit(0);
}
if(ch==3)
{
cout<<"You have selected Option Number 3. which is get the source code"<<endl;
}
if(ch==2)
{
cout<<"You have selected Option Number 2. which is list of project"<<endl ;
cout<<"Here was list"<<endl ;
cout<<"1. Addition operation"<<endl;
cout<<"2. substraction"<<endl;
cout<<"3. Multiplication"<<endl;
cout<<"4. Division"<<endl;
cout<<"5. print the character or String"<<endl;
cout<<"6. Simple Interest"<<endl;
cout<<"7. Compound Interest"<<endl;
cout<<"8. Power value"<<endl;
cout<<"9. Square root"<<endl;
cout<<"10. Palindrome Number"<<endl;
cout<<"11. Armstrong Number"<<endl;
cout<<"12. Sum of each digits"<<endl;
cout<<"13. Multiplication of each digits"<<endl;
cout<<"14. Perfect Number"<<endl;
cout<<"15. factor of Input number"<<endl;
cout<<"16. factorial of Input Number"<<endl;
cout<<"17. Student is pass or fail"<<endl;
cout<<"18. leap yaer or not"<<endl;
cout<<"19. Person is eligible for vote or not"<<endl;
cout<<"20. print table"<<endl;
cout<<"Please Select One option in above project ";
cin>>chl;
if(chl==1)
{
cout<<"Program for Addition Operation ->"<<endl;
clrscr();
cout<<"Enter 1 st value ->"<<endl;
cin>>a;
cout<<"Enter 2 nd value -> "<<endl;
cin>>b;
c=a+b;
cout<<"sum ->"<<a <<" +"<<b<< " ="<<c<<endl;
}
if(chl==2)
{
cout<<"Program for Substraction Operation ->"<<endl;
clrscr();
cout<<"Enter 1 st value ->"<<endl;
cin>>a;
cout<<"Enter 2 nd value -> "<<endl;
cin>>b;
c=a-b;
cout<<"sub ->"<<a <<" -"<<b<< " ="<<c<<endl;
}
if(chl==3)
{
cout<<"Program for Multiplication Operation ->"<<endl;
clrscr();
cout<<"Enter 1 st value ->"<<endl;
cin>>a;
cout<<"Enter 2 nd value -> "<<endl;
cin>>b;
c=a*b;
cout<<"Multi ->"<<a <<" *"<<b<< " ="<<c<<endl;
}
}
getch();
}