In: Computer Science
in c++:
The area of an arbitrary triangle can be computed using the
formula
where a, b, and c are the lengths of the sides, and s is the
semiperimeter :
s = (a + b + c) / 2
1. (5 points) Write a void function that uses five parameters
:
three value parameters that provide the lengths of the edges
and
two reference parameters that compute the area and perimeter(not
the semiperimeter).
Make your function robust.Note that not all combinations of a, b,
and c produce a triangle.
Your function should produce the correct results for legal data and
reasonable results for illegal combinations.
#include<stdio.h>
#include<math.h>
#include<iostream>
using namespace std;
void calcArea(int a, int b, int c, double &p, double
&area){
if(a+b<=c || a+c<=b || b+c<=a){
printf("Triangle not
possible\n");
p=-1;
return;
}else{
p=a+b+c;
double s=p/2;
area=sqrt((s)*(s-a)*(s-b)*(s-c));
return;
}
}
int main(){
int a, b, c;
printf("Enter sides with spaces: ");
scanf("%d %d %d", &a, &b, &c);
double p, area;
calcArea(a, b, c, p, area);
if(p!=-1){
printf("Perimeter: %.2f and Area:
%.2f\n", p, area);
}
return 0;
}