编辑:这本书有一个错字,包含圆柱体和使用的体积,但是程序的重点是练习使用静态方法,所以没关系。

我完成了该程序,并使其能够使静态方法与主类进行交互。我只是十进制格式有问题。我的双打获得11位小数。我已经尝试过使用DecimalFormat,但是无论放在哪里,它都没有任何影响。因为现在使用静态方法,我是否需要做一些额外的事情?

import java.text.DecimalFormat; //import DecimalFormat

class Area{

    //Area of a Circle
    static double Area(double radius){
        return Math.PI * (radius * radius);
    }

    //Area of a Rectangle
    static int Area(int width, int length){
        return width * length;
    }

    //Volume of a Cyclinder
    static double Area(double radius, double height){
        return Math.PI * (radius * radius) * height;
    }
}

public class AreaDemo{
    public static void main(String[] args){

        //Variable Declarations for each shape
        double circleRadius = 20.0;
        int rectangleLength = 10;
        int rectangleWidth = 20;
        double cylinderRadius = 10.0;
        double cylinderHeight = 15.0;

        //Print Statements for the Areas
        System.out.println("The area of a circle with a radius of " + circleRadius + " is " + Area.Area(circleRadius)); //Circle
        System.out.println("The area of a rectangle with a length of " + rectangleLength + " width of " + rectangleWidth + " is " + Area.Area(rectangleLength, rectangleWidth)); //Rectangle
        System.out.println("The area of a cylinder with radius " + cylinderRadius + " and height " + cylinderHeight + " is " + Area.Area(cylinderRadius, cylinderHeight)); //Cylinder
    }
}

最佳答案

如果您想使用小数格式,可以这样,

double d = 1.234567;
DecimalFormat df = new DecimalFormat("#.##");
System.out.print(df.format(d));


这将打印出1.23。如果将格式增加为"#.###,则为1.235

或更适合您的是

DecimalFormat df = new DecimalFormat("#.##");
//Print Statements for the Areas
System.out.println("The area of a circle with a radius of " + df.format(circleRadius) + " is " + df.format(Area.Area(circleRadius))); //Circle
// do same for your others

关于java - 静态方法的十进制格式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17290360/

10-12 04:56