我是java编程的新手,我正在通过Y.Danniel Liang对java编程的书籍介绍学习所有内容,尽管我试图找到答案,但我根本不明白什么是hapenning ...因此,你的帮助将非常受欢迎。
import java.util.Scanner;
public class areaOfPentagon {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter the lenght of center to the vertex : ");
double r = input.nextDouble();
double s = 2*r*(Math.sin(Math.PI/5));
double area = 5*(Math.pow(s, 2))/(4*(Math.tan(Math.PI/5)));
System.out.printf("the area %4.2f of the pentagon is", area);