English

The volume of a sphere is calculated by using formula: v = 43∗227∗r3 Write a program to calculate the radius of a sphere by taking its volume as an input. Hint: radius = volumevolume∗34∗7223 - Computer Applications

Advertisements
Advertisements

Question

The volume of a sphere is calculated by using formula: 

v = `4/3 ∗ 22/7 ∗ r^3`

Write a program to calculate the radius of a sphere by taking its volume as an input. 

Hint: radius = `root3 ("volume" ∗ 3/4 ∗ 7/22)`

Answer in Brief

Solution

import java.util.*; 
public class Q4
{public static void main(String args[])
{Scanner in = new Scanner(System.in);
double vol, r; 
System.out. println("Enter the volume of the sphere"); 
vol = in.nextDouble(); 
r = Math.cbrt(vol * 3 / 4 * 7 / 22);
System. out. println("Radius = " + r); 
}}
shaalaa.com
  Is there an error in this question or solution?
Chapter 1.07: Mathematical Library Methods - EXERCISES [Page 81]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 1.07 Mathematical Library Methods
EXERCISES | Q VI. 4. | Page 81
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×