el flotador
La tarea es multiplicar dos números de coma flotante en Java e imprimir su multiplicación.
Acercarse:
- Inicialice dos números de tipo flotante.
- Almacene su resultado de multiplicación en una variable flotante.
- Imprime ese resultado
Java
// Java Program to print Multiplication of two floating // point Number. import java.io.*; class GFG { public static void main(String[] args) { // f is to ensures that numbers are float DATA TYPE float f1 = 1.5f; float f2 = 2.0f; // to store the multiplied value float p = f1 * f2; // to print the product System.out.println("The product is: " + p); } }
Producción
The product is: 3.0
Publicación traducida automáticamente
Artículo escrito por aksrathod07 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA