En este tutorial veremos como hacerlo calcular el área del rectángulo.
Programa 1:
El usuario proporcionará los valores de longitud y ancho mientras se ejecuta el programa y el área se calculará en función de los valores proporcionados.
/** * @author: BeginnersBook.com * @description: Program to Calculate Area of rectangle */ import java.util.Scanner; class AreaOfRectangle { public static void main (String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("Enter the length of Rectangle:"); double length = scanner.nextDouble(); System.out.println("Enter the width of Rectangle:"); double width = scanner.nextDouble(); //Area = length*width; double area = length*width; System.out.println("Area of Rectangle is:"+area); } }
Producción:
Enter the length of Rectangle: 2 Enter the width of Rectangle: 8 Area of Rectangle is:16.0
Programa 2:
En el programa anterior, se le pedirá al usuario que proporcione los valores de largo y ancho. Si no se requiere la interacción del usuario y simplemente desea especificar valores en el programa, consulte el siguiente programa.
/** * @author: BeginnersBook.com * @description: Calculation with no user interaction */ class AreaOfRectangle2 { public static void main (String[] args) { double length = 4.5; double width = 8.0; double area = length*width; System.out.println("Area of Rectangle is:"+area); } }
Producción:
Area of Rectangle is:36.0