Print the sum of a and b is divided by the product of a and b.
Answers
Answered by
0
Answer:
In c++ language-
#include<iostream.h>
main()
{
float a,b,e;
cout<<"enter two numbers.";
cin>>a>>b;
e=(a+b)/(a*b);
cout<<e;
return 0;
}
Explanation:
example-
on taking-
a=3,b=5
answer e=0.5
Similar questions