kotlin 查找id_Kotlin程序查找立方体区域
生活随笔
收集整理的這篇文章主要介紹了
kotlin 查找id_Kotlin程序查找立方体区域
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
kotlin 查找id
A cube has 6 square faces, if edges length is side. Then the area of each square is side2, thus, the area of cube will be 6*sise2.
如果邊的長度為side ,則一個立方體有6個正方形的面。 那么每個正方形的面積是邊2 ,因此,立方體的面積將是6 * sise 2 。
Given the value of side of the cube, we have to find its area.
給定立方體的side值,我們必須找到它的面積。
Example:
例:
Input:side = 5Output:Area of cube = 150.0程序在Kotlin中查找立方體的區域 (Program to find area of a cube in Kotlin)
package com.includehelpimport java.util.*//Main Function , Entry point of Program fun main(args: Array<String>) {//Input Streamval scanner = Scanner(System.`in`)//Input sideprint("Enter Side of Cube : ")val side = scanner.nextDouble()//Cube Surface Areaval areaCube = 6*Math.pow(side, 2.toDouble())//Print Areaprintln("Cube Surface Area on Side ($side) is :$areaCube") }Output
輸出量
Run 1: Enter Side of Cube : 5 Cube Surface Area on Side (5.0) is :150.0 --- Run 2: Enter Side of Cube : 12 Cube Surface Area on Side (12.0) is :864.0翻譯自: https://www.includehelp.com/kotlin/find-area-of-a-cube.aspx
kotlin 查找id
總結
以上是生活随笔為你收集整理的kotlin 查找id_Kotlin程序查找立方体区域的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 最大化切割段
- 下一篇: julia自然常数_Julia中的Sys