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; }
Numbers and figures are an essential part of our world, necessary for almost everything we do every day. As important…
APPROVED BY CLIENTS
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments
Leave a comment