-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathExercise04_05.java
40 lines (29 loc) · 1.22 KB
/
Exercise04_05.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package ch_04;
import java.util.*;
/**
* 4.5 (Geometry: area of a regular polygon) A regular polygon is an n-sided polygon in
* which all sides are of the same length and all angles have the same degree (i.e., the
* polygon is both equilateral and equiangular). The formula for computing the area
* of a regular polygon is
* Area =
* n * s2
* 4 * tan¢ pn ≤
* Here, s is the length of a side. Write a program that prompts the user to enter the
* number of sides and their length of a regular polygon and displays its area. Here is
* a sample run:
* Enter the number of sides: 5
* Enter the side: 6.5
* The area of the polygon is 74.69017017488385
*/
public class Exercise04_05 {
//computes the area of a regular polygon
public static void main(String[] args) {
System.out.println("Enter the number of sides of the polygon: ");
Scanner input = new Scanner(System.in);
int numSides = input.nextInt();
System.out.println("Enter the length of the sides: ");
double lengthSides = input.nextDouble();
double area = (numSides * lengthSides * lengthSides) / (4 * Math.tan(Math.PI / numSides));
System.out.println("The area of your polygon is: " + area);
}
}