Как заставить последнюю строку моего кода печатать все значения с двумя цифрами после десятичной точки? - PullRequest
0 голосов
/ 11 июля 2020
import java.util.Scanner;
import javax.swing.plaf.basic.BasicInternalFrameTitlePane.SystemMenuBar;

class Main {

    public static void main(String[] args) {
        System.out.println("My name is Akhil Madusudan");
        System.out.println("This program calculates the volume and surface area of a cuboid");

        Scanner l = new Scanner(System.in);
        System.out.println("Enter the cuboid length:");
        double length = l.nextDouble();


        Scanner h = new Scanner(System.in);
        System.out.println("Enter the cuboid height:");
        double height = h.nextDouble();

        Scanner w = new Scanner(System.in);
        System.out.println("Enter the cuboid width:");
        double width = w.nextDouble();

        double cuboidVolume;
        cuboidVolume = (length * width * height);
        double surfaceArea;
        surfaceArea = ((2) * width * length + (2) * length * height + (2) * width * height);

        System.out.printf("Volume of the cuboid (Length: " + length + "/Height: " + height + "/ Width: " + width + ") is " + cuboidVolume);
    }
}

1 Ответ

0 голосов
/ 11 июля 2020

Вам нужен только один Scanner. И просто замените

System.out.printf("Volume of the cuboid (Length: " + 
        length + "/Height: " + height + 
        "/ Width: " + width + ") is " + cuboidVolume);

на что-то вроде

System.out.printf("Volume of the cuboid (Length: "
        + "%.2f/Height: %.2f/ Width: %.2f) is %.2f%n",
        length, height, width, cuboidVolume);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...