kotlin 查找id_Kotlin程序查找Sphere的体积
生活随笔
收集整理的這篇文章主要介紹了
kotlin 查找id_Kotlin程序查找Sphere的体积
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
kotlin 查找id
Formula to find volume of Sphere: volume =(4/3)*PI*r^3
查找球體體積的公式: volume =(4/3)* PI * r ^ 3
Given the value of radius, we have to find the volume of Sphere.
給定半徑的值,我們必須找到球體的體積。
Example:
例:
Input:radius = 7Output:volume = 1436.7550402417319程序在Kotlin中查找Sphere的體積 (Program to find volume of Sphere in Kotlin)
package com.includehelpimport java.util.* import kotlin.math.pow//Main Function , Entry point of Program fun main(args: Array<String>) {//Input Streamval scanner = Scanner(System.`in`)//Input Radiusprint("Enter Radius of Sphere : ")val radius = scanner.nextDouble()//Sphere Volumeval sphereVolume = (4.0/3.0)*Math.PI*radius.pow(3)//Print Volumeprintln("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翻譯自: https://www.includehelp.com/kotlin/find-volume-of-sphere.aspx
kotlin 查找id
總結
以上是生活随笔為你收集整理的kotlin 查找id_Kotlin程序查找Sphere的体积的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 数据库拆分字符串函数_PHP | 不使用
- 下一篇: 数组重复次数最多的元素递归_在不使用递归