About 22,000,000 results
Open links in new tab
  1. Java Program to Find the Surface Area and Volume of a Cone

    Feb 29, 2024 · Surface Area of Cone = Area of cone + Area of Circle = pi * r * s + pi * r^2. Volume of Cone = 1/3 (pi * r * r * h) where r is the radius of the circular base, h is the height (the …

  2. Java Program to find Volume and Surface Area of Cone

    In this Java Program to find Volume and Surface Area of Cone, we are using the Mathematical Formula to calculate the Length of a Side (Slant) of a Cone length = Math.sqrt(radius * radius …

  3. Java Program to Calculate Volume of Cone - Tutorials Field

    Hi everyone, In this post, we will learn Java Program to calculate Volume of Cone. A cone is a three-dimensional shape in geometry that narrows smoothly from a flat base (usually circular …

  4. Learn Java: Calculate Volume of a Cone| Function Fountain

    Calculating the volume of a cone involves applying a specific mathematical formula: `V = 1/3*π*r^2*h`. `V` is the volume, `r` is the radius of the base of the cone, `h` is the height and π …

  5. How to Find the Surface Area and Volume of a Cone in Java

    To calculate the surface area and volume of a cone in Java, you can use the following formulas: Surface Area: Surface Area = p * r * (r + l) Volume: Volume = (1/3) * p * r^2 * h. Where: p (pi) …

  6. Java Program to Find Volume and Surface Area of Cone

    Given the dimensions of a cone, find out its surface area and volume. The surface area and volume of a cone can be calculated using the formulas: Surface Area = (PI * radius * slant …

  7. java - my geometry program (Calculating area and volume of …

    Apr 19, 2014 · public static void output(double radius, double height) { System.out.printf("Volume of sphere: %.13f\n", sphereVolume(radius, height)); System.out.printf("Surface area of Sphere: …

  8. Java program to calculate the volume of a cone - Programming …

    Write a java program to accept the radius and height of cone and calculate the volume of a cone.

  9. Java Program to Calculate Volume and Surface Area of Cone

    In this java program, we have to calculate the volume and total surface area of a cone, given the base radius and height of the cone. A cone is an three-dimensional geometric shape having …

  10. Java Program to Find Volume of Cone - BTech Geeks

    Dec 7, 2024 · Method-1: Java Program to Find Volume of Cone By Using Static Value. Method-2: Java Program to Find Volume of Cone By User Input Value. Method-3: Java Program to Find …

  11. Some results have been removed