मराठी

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

प्रश्न

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)`

थोडक्यात उत्तर

उत्तर

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
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.07: Mathematical Library Methods - EXERCISES [पृष्ठ ८१]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 1.07 Mathematical Library Methods
EXERCISES | Q VI. 4. | पृष्ठ ८१
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×