日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

kotlin 查找id_Kotlin程序查找平行四边形的区域

發布時間:2025/3/11 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 kotlin 查找id_Kotlin程序查找平行四边形的区域 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

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中查找平行四邊形的區域 (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

總結

以上是生活随笔為你收集整理的kotlin 查找id_Kotlin程序查找平行四边形的区域的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。