program 2
//Program to find all Mathematical operation on two operators a & b
//i.e a+b ,a-b ,a*b, a/b ,a%b .
#include
#include
int main()
{
float a,b,res;
cout<<"Enter a:"; cin>>a;
cout<<"\n Enter b:"; cin>>b;
cout<<"\n Division of a & b is : "< cout<<"\n Multiplication of a & b is : "< cout<<"\n Addition of a & b is : "< cout<<"\n Subtraction of a & b is : "< cout<<"\n Mode of a & b is : "
getch();
}