Computer Applications
The volume of a sphere is calculated by using formula:
v = (4/3)*(22/7)*r3
Write a program to calculate the radius of a sphere by taking its volume as an input.
Hint: radius = ∛(volume * (3/4) * (7/22))
Java
Java Math Lib Methods
50 Likes
Answer
import java.util.Scanner;
public class KboatSphere
{
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
System.out.print("Enter volume of sphere: ");
double v = in.nextDouble();
double r = Math.cbrt(v * (3 / 4.0) * (7 / 22.0));
System.out.println("Radius of sphere = " + r);
}
}
Variable Description Table
Program Explanation
Output
Answered By
20 Likes
Related Questions
The standard form of quadratic equation is represented as:
ax2 + bx + c = 0where d= b2 - 4ac, known as 'Discriminant' of the equation.
Write a program to input the values of a, b and c. Calculate the value of discriminant and display the output to the nearest whole number.
Write a program to input a number. Calculate its square root and cube root. Finally, display the result by rounding it off.
Sample Input: 5
Square root of 5= 2.2360679
Rounded form= 2
Cube root of 5 = 1.7099759
Rounded form= 2A trigonometrical expression is given as:
(Tan A - Tan B) / (1 + Tan A * Tan B)Write a program to calculate the value of the given expression by taking the values of angles A and B (in degrees) as input.
Hint: radian= (22 / (7 * 180)) * degree
For every natural number m>1; 2m, m2-1 and m2+1 form a Pythagorean triplet. Write a program to input the value of 'm' through console to display a 'Pythagorean Triplet'.
Sample Input: 3
Then 2m=6, m2-1=8 and m2+1=10
Thus 6, 8, 10 form a 'Pythagorean Triplet'.