Q:

Java program to calculate the surface area and volume of Sphere

belongs to collection: Java Basic Programs

0

Java program to calculate the surface area and volume of Sphere

All Answers

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

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

Program/Source Code:

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

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

import java.util.Scanner;

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

    double radius = 0;
    double volume = 0;
    double area = 0;

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

    volume = (4.0 / 3) * (3.14) * Math.pow(radius, 3);
    area = 4 * (3.14) * Math.pow(radius, 2);

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

Output:

Enter the radius: 4.56
Volume of Sphere          : 396.974776
Surface area of Sphere: 261.167616

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 the radius from the user using the Scanner class. Then we calculated the volume and surface area of Sphere 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 mean, variance, and ... >>
<< Java program to calculate the surface area and vol...