Kotlin程序:求矩形的周长
在本文中,我们将了解如何求矩形的周长。矩形的周长使用以下公式计算:
2*(length + width)
下面是一个演示:
假设我们的输入是:
The length of the sides of a rectangle are: 5, 8, 5, 8
期望的输出是:
Perimeter : 26
算法
步骤1 - 开始
步骤2 - 声明三个整型变量:length(长)、width(宽)和myResult(结果)。
步骤3 - 定义变量值。
步骤4 - 使用公式 2 * (length + width) 计算周长,并将结果存储在myResult中。
步骤5 - 显示周长值。
步骤6 - 结束
示例1
在这个例子中,我们将使用上面给出的公式来求矩形的周长。首先,声明并设置变量length和width:
val length = 5 val width = 8
然后,使用length和width求矩形的周长:
val myResult = 2 * (length + width)
让我们来看一个计算矩形周长的例子:
fun main() { val length = 5 val width = 8 println("The sides of the rectangle are defined as $length, $width, $length, $width") val myResult = 2 * (length + width) println("Perimeter of rectangle is: $myResult") }
输出
The sides of the rectangle are defined as 5, 8, 5, 8 Perimeter of rectangle is: 26
示例2
在这个例子中,我们将求矩形的周长。
fun main() { val length = 5 val width = 8 println("The sides of the rectangle are defined as $length, $width, $length, $width") getPerimeter(length, width) } fun getPerimeter(length: Int, width: Int) { val myResult = 2 * (length + width) println("Perimeter of rectangle is: $myResult") }
输出
The sides of the rectangle are defined as 5, 8, 5, 8 Perimeter of rectangle is: 26
广告