A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Java program to calculate the surface area and volume of Cone
Q:

Java program to calculate the surface area and volume of Cone

0

Java program to calculate the surface area and volume of Cone

All Answers

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

In this program, we will read heightradius from the user and calculate the surface area, volume, of the cone.

Program/Source Code:

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

// Java program to calculate the surface area 
// and volume of Cone

import java.util.Scanner;

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

    double height = 0;
    double radius = 0;

    double volume = 0;
    double area = 0;

    System.out.printf("Enter the height: ");
    height = SC.nextDouble();

    System.out.printf("Enter the radius: ");
    radius = SC.nextDouble();

    volume = (1.0F / 3) * (3.14F) * radius * radius * height;
    area = (3.14F) * radius * (radius + Math.sqrt(radius * radius + height * height));

    System.out.printf("Volume of Cone 	    : %f\n", volume);
    System.out.printf("Surface area of Cone: %f\n", area);
  }
}

Output:

Enter the height: 2.34
Enter the radius: 4.67
Volume of Cone      : 53.414362
Surface area of Cone: 145.075675

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 contains a static method main().

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

 

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

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now