Computer Science, asked by yatharth715, 6 months ago

Write a program in Java to find the area, perimeter and the diagonal of a square by using Scanner class.​

Answers

Answered by saidulnayan781
4

Answer:

import java.util.Scanner;

public class Square {

public static void main(String[] args) {

 // Taking inputs from user

 Scanner sc = new Scanner(System.in);

 System.out.print("Enter the Length: ");

 double length = sc.nextDouble();

 sc.close();

 double area = length * length;

 double perimeter = 4 * length;

 double diagonal = Math.sqrt(2) * length;

 

 System.out.println("Area: " + area);

 System.out.println("Perimeter: " + perimeter);

 System.out.println("Length of diagonal: " + diagonal);

}

}

Similar questions