Kotlin program to find volume of Sphere

Kotlin | volume of Sphere: Here, we are going to implement a Kotlin program to find the volume of Sphere.
Submitted by IncludeHelp, on May 23, 2020

Problem statement

Given the value of radius, we have to find the volume of Sphere.

Example:

Input:
radius = 7

Output:
volume = 1436.7550402417319

Kotlin - Find volume of Sphere

Formula to find volume of Sphere: volume =(4/3)*PI*r^3

Program to find volume of Sphere in Kotlin

package com.includehelp

import java.util.*
import kotlin.math.pow

//Main Function , Entry point of Program
fun main(args: Array<String>) {

    //Input Stream
    val scanner = Scanner(System.`in`)

    //Input Radius
    print("Enter Radius of Sphere : ")
    val radius = scanner.nextDouble()

    //Sphere Volume
    val sphereVolume = (4.0/3.0)*Math.PI*radius.pow(3)

    //Print Volume
    println("Sphere Volume on radius $radius is : $sphereVolume")
}

Output

Run 1:
Enter Radius of Sphere : 7
Sphere Volume on radius 7.0 is : 1436.7550402417319
---
Run 2:
Enter Radius of Sphere : 21
Sphere Volume on radius 21.0 is : 38792.38608652676

Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.