Kotlin程序查找圆的周长


在本文中,我们将了解如何求圆的周长。圆的周长由公式计算。

(2*22*radius)/7

你也可以这样写表达式−

2ℼr

ℼ 的值为 22/7 或 3.14。

假设我们的输⼊是 −

Radius of the circle : 5

所需的输出来看 −

Perimeter of Circle is: 31.428571428571427

算法

  • Step 1 − START。

  • Step 2 − 声明 2 个 double 类型的数值,分别是半径和 myResult。

  • 步骤 3 − 定义值。

  • Step 4 − 使用公式 (2*22*半径)/7 计算周长,并存储结果。

  • 步骤 5 − 显示结果。

  • Step 6 − 停止。

示例 1

在这个示例中,我们将找到圆的周长。首先,声明并初始化一个变量,用于表示圆的半径 −

val radius = 5

现在,在新的变量 myResult 中,使用上述公式计算周长 −

val myResult = (2 * 22 * radius)/7

现在让我们看看完整的示例,以求出圆的周长 −

fun main() { val radius = 5 println("The radius of the circle is defined as $radius") val myResult = (2 * 22 * radius)/7 println("The perimeter of the circle is: $myResult") }

输出

The radius of the circle is defined as 5
The perimeter of the circle is: 31

示例 2

在此示例中,我们将找到圆的周长。

fun main() { val radius = 5 println("The radius of the circle is defined as $radius") circlePerimeter(radius) } fun circlePerimeter(radius: Int) { val myResult = (2 * 22 * radius)/7 println("The perimeter of the circle is: $myResult") }

输出

The radius of the circle is defined as 5
The perimeter of the circle is: 31

更新时间: 17-Oct-2022

402 浏览

开启你的职业生涯 之路

通过完成课程获得认证

开始
广告