示例:将两个浮点数相乘
public class MultiplyTwoNumbers {
public static void main(String[] args) {
float first = 1.5f;
float second = 2.0f;
float product = first * second;
System.out.println("The product is: " + product);
}
}
输出
The product is: 3.0
在上面的程序中,我们分别在变量first和second中存储了两个浮点数1.5f
和2.0f
。
注意,我们在数字后面使用了f
。这样可以确保数字是float
,否则将为它们分配类型为double
。
然后使用*
运算符将first和second相乘,结果存储在新的float变量乘积中 。
最后,使用println()
函数将结果产品打印在屏幕上。