我如何阻止System.out.printf停止在java eclipse中给我错误

时间:2015-03-06 14:19:01

标签: java eclipse

我是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);

0 个答案:

没有答案