c++ program to find area,perimeter,volume of a rectangle using seperate function
#include "iostream"
#include "math.h"
using namespace std;
double triangle(int a, int b, int c)
{
int P;
double S;
P = a + b + c;
cout<<P<<endl;
S = (a*b*c)/(4*sqrt((a+b+c)*(b+c-a)*(a+c-b)*(a+b-c)));
cout<<S<<endl;
return 0;
}
int main()
{
int a,b,c;
cout<<"Input triangle plz"<<endl;
cin>>a>>b>>c;
triangle(a,b,c);
system ("pause");
return 0;
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
Adobe Flash