Q:

Java program to calculate the area of Rhombus

belongs to collection: Java Basic Programs

0

Java program to calculate the area of Rhombus

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

In this program, we will read diagonals from the user and calculate the area of the Rhombus. Then we will print the result.

Program/Source Code:

The source code to calculate the area of Rhombus is given below. The given program is compiled and executed successfully.

// Java program to calculate the 
// area of Rhombus

import java.util.Scanner;

public class Main {
  static float calcuateAreaOfRhombus(float diagonal1, float diagonal2) {
    float result = 0.0F;

    result = 0.5F * diagonal1 * diagonal2;
    return result;
  }

  public static void main(String[] args) {
    Scanner SC = new Scanner(System.in);

    float diagonal1 = 0;
    float diagonal2 = 0;
    float area = 0;

    System.out.printf("Enter the value of first diagonal: ");
    diagonal1 = SC.nextFloat();

    System.out.printf("Enter the value of second diagonal: ");
    diagonal2 = SC.nextFloat();

    area = calcuateAreaOfRhombus(diagonal1, diagonal2);

    System.out.printf("Area of rhombus is: %f\n", area);
  }
}

Output:

Enter the value of first diagonal: 3
Enter the value of second diagonal: 5.5
Area of rhombus is: 8.250000

Explanation:

In the above program, we imported the "java.util.Scanner" package to read input from the user. And, created a public class Main. It contain two static methods calcuateAreaOfRhombus() and main().

The calcuateAreaOfTrapezium() method is used to calculate the area of the Rhombus.

The main() method is an entry point for the program. Here, we read diagonals from the user using the Scanner class. Then we calculated the area of Rhombus using the calcuateAreaOfRhombus() method and printed the result.

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to calculate the area of Parallelogra... >>
<< Java program to calculate the area of Trapezium...