Question

In: Computer Science

in c++: The area of an arbitrary triangle can be computed using the formula where a,...

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.

Solutions

Expert Solution

#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;

}
  


Related Solutions

Deriving the Area of an Obtuse Triangle You just derived the formula for the area of...
Deriving the Area of an Obtuse Triangle You just derived the formula for the area of an acute triangle using trigonometric ratios. Now extend the idea to finding the area of an obtuse triangle. Part A Draw a line that passes through points A and B. Then draw a line through point C that is perpendicular to line AB . Label the intersection of the perpendicular line AB and as point D. Take a screenshot of your construction, save it,...
In this question using c++, you have to design the Pascal triangle where you can create...
In this question using c++, you have to design the Pascal triangle where you can create a list of coefficients of a binomial of any size that is passed to the constructor. Data members and member functions of this class are of your design choice. You need to use only pointers and pointers to pointers (do not use regular array notations). Create a two-dimensional array in the heap memory (which creates a dynamic memory). Use an application program to print...
use java The area of a circle is computed by ?? 2 , where r is...
use java The area of a circle is computed by ?? 2 , where r is the radius of the circle and π is 3.14. The area of a rectangle is computed by ??, where a and b correspond to the length and width of the rectangle respectively. The area of a triangle is computed by ah 2 , where a and h correspond to the length and height of the triangle respectively. Write a Java program: First it asks...
1) Write a program in C++ sin(x) can be approximately calculated using the following formula, where...
1) Write a program in C++ sin(x) can be approximately calculated using the following formula, where n! is factorial(n) – for example 3!=3*2*1 = 6 (the function in previous problem). The more terms we use in the series, the higher will be accuracy of the calculations. By using infinite terms in the series we will have the exact value. Hint 1: For n! simply use (copy and paste) the factorialFunc(n)from previous problem. Hint 2: This problems is similar to the...
Find the maximum area of a rectangle inscribed in a triangle of area A.(NOTE: the triangle...
Find the maximum area of a rectangle inscribed in a triangle of area A.(NOTE: the triangle need not necessarily be a right angled triangle).
Determine the area of ​​the largest isosceles triangle that can be written into the unit circle....
Determine the area of ​​the largest isosceles triangle that can be written into the unit circle. It is advisable to let the corners in the triangle be given by (0.1), (x, y) and (−x, y), all on the unit circle, with x ≥ 0 but where we allow y to be negative.
Consider the integralHC F·dr where F = yi−xj + z3k where C is the triangle with...
Consider the integralHC F·dr where F = yi−xj + z3k where C is the triangle with vertices (0,0,3), (1,1,4), (2,0,0), oriented counterclockwise if viewed from above. a. [2] Represent the equation of the plane containing the triangle in the form z = ax + by + c and find a, b and c. b. [2] Compute curl F. c. [4] Compute the original line integral using Stokes’ theorem.
/* calculating area of a circle, calculating area of a rectangle, calculating area of a triangle,...
/* calculating area of a circle, calculating area of a rectangle, calculating area of a triangle, and quit. */ import java.util.Scanner; public class GeoCalculator {    public static void main(String arg[]) { int geoCalc; //number selection of user Scanner get = new Scanner(System.in); //display section. System.out.println("Geometry Calculator"); System.out.println("Please select from the following menu:"); System.out.println("1. Calculate the Area of a Cirlce."); System.out.println("2. Calculate the Area of a Rectangle."); System.out.println("3. Calculate the Area of a Triangle."); System.out.println("4. QUIT"); System.out.println("Please make a selection:...
The statistics for the following examples can be computed by hand or using a statistical package....
The statistics for the following examples can be computed by hand or using a statistical package. Gina and Ariely (2012) found in a series of studies that creativity was positively related to dishonest behavior, both when people are naturally creative and when they are stimulated to be creative. Suppose you want to know whether creativity is negatively related to integrity in an educational setting. You have students complete a creativity measure and report on their academic honesty (no plagiarism, completing...
45. If the area model for a triangle is A = 1/2 bh, find the area...
45. If the area model for a triangle is A = 1/2 bh, find the area of a triangle with a height of 16 in. and a base of 11 in.? the answer should be A=88 in.squier 43. Using the formula in the previous exercise, find the distance that Susan travels if she is moving at a rate of 60 mi/h for 6.75 h.? the answer should be 405 mi 47. Use the formula from the previous question to find...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT