Question: Problem a (LA2a.java) Write a program to compute the area, perimeter, and interior angle of a regular polygon. First, have the user supply the number

 Problem a (LA2a.java) Write a program to compute the area, perimeter,

Problem a (LA2a.java) Write a program to compute the area, perimeter, and interior angle of a regular polygon. First, have the user supply the number of sides of the polygon (a whole number, which must be 3 or greater) and the side length (any positive number) Then, compute the area via the following equation: Area = --= Man(180) 4tan where n is the number of sides and s is the side length. Note that the equations are equivalent, with the first using degrees and the second using radians. Then, compute the perimeter via the following equation Perimeter-ns and then the interior angle (in degrees) via the following equation Interior Angle - 180 So, an example run of your program would look like the following 360 Enter number of sides: 3 Enter side length: 1 Area : 0 . 433 Perimeter: 3.000 Interior Angle: 60.000 degrees You should express the outputs using exactly three decimal places (rounding where necessary). Tips: (i) the Math.tan) method will compute the tangent of a value in radians, (ii) the Math.toRadians() method will convert a value in degrees to radians, and(ii) the Math.PI constant can be used for pi (T)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!