Answer to Question #4727 in Action Script | Flash | Flex | ColdFusion for nishara

Question #4727
c++ program to find area,perimeter,volume of a rectangle using seperate function
1
Expert's answer
2011-10-21T08:52:15-0400
#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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS