kotlin 查找id_Kotlin程序查找平行四边形的区域
生活随笔
收集整理的這篇文章主要介紹了
kotlin 查找id_Kotlin程序查找平行四边形的区域
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
kotlin 查找id
Formula to find area of Parallelogram: area = base*height
查找平行四邊形面積的公式: area = base * height
Given the value of base and height, we have to find the area of Parallelogram.
給定基礎和高度的值,我們必須找到平行四邊形的面積。
Example:
例:
Input:base = 5height = 8Output:area = 40.0程序在Kotlin中查找平行四邊形的區(qū)域 (Program to find area of Parallelogram 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 Base of Parallelogramprint("Enter Parallelogram Base : ")val b = scanner.nextDouble()//Input Height of Parallelogramprint("Enter Parallelogram Height : ")val h = scanner.nextDouble()//Calculate Area of Parallelogramval areaParallelogram = b * h//Print Areaprintln("Area of Parallelogram is :$areaParallelogram") }Output
輸出量
Run 1: Enter Parallelogram Base : 5 Enter Parallelogram Height : 8 Area of Parallelogram is :40.0 --- Run 2: Enter Parallelogram Base : 5.7 Enter Parallelogram Height : 3 Area of Parallelogram is :17.1翻譯自: https://www.includehelp.com/kotlin/find-area-of-parallelogram.aspx
kotlin 查找id
總結(jié)
以上是生活随笔為你收集整理的kotlin 查找id_Kotlin程序查找平行四边形的区域的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Java LocalDateTime类|
- 下一篇: linux用户组管理命令_Linux用户