Kotlin 程序,用于乘以两个浮点数
在本文中,我们将了解如何乘以两个浮点数。浮点数是一个带有小数点的正数或负整数。Kotlin 中有两种浮点数
- Float
- Double
以下是它们的演示 −
假设我们的输入是
val1: 10.5 val2: 45.0
期望的输出将是
The product is: 472.5
算法
步骤 1 − 开始
步骤 2 − 声明三个浮点数:val1、val2 和 product
步骤 3 − 定义浮点值
步骤 4 − 读取数值
步骤 5 − 使用乘法运算符 (*) 乘以两个值
步骤 6 − 显示结果
步骤 7 − 停止
示例 1
在这个示例中,我们将使用乘法算术运算符乘以两个浮点数
fun main() { val val1 = 10.5f val val2 = 45.0f println("The first value is defined as: $val1") println("The second value is defined as: $val2") val product = val1 * val2 println("The product is: $product") }
输出
The first value is defined as: 10.5 The second value is defined as: 45.0 The product is: 472.5
示例 2
在这个示例中,我们将乘以两个浮点数
fun product(val1 : Float, val2 : Float){ val product = val1 * val2 println("The product is: $product") } fun main() { val val1 = 12.5f val val2 = 40.0f println("The first value is defined as: $val1") println("The second value is defined as: $val2") product(val1, val2) }
输出
The first value is defined as: 12.5 The second value is defined as: 40.0 The product is: 500.0
示例 3
在这个示例中,我们将使用乘法算术运算符乘以两个浮点数(Double)
fun main() { val val1 = 12.0 val val2 = 23.5 println("The first value is defined as: $val1") println("The second value is defined as: $val2") val product = val1 * val2 println("
The product is: $product") }
输出
The first value is defined as: 12.0 The second value is defined as: 23.5 The product is: 282.0
广告