The float class is a wrapper class for the primitive type float which contains several methods to effectively deal with a float value like converting it to a string representation, and vice-versa. An object of the Float class can hold a single float value. The task is to multiply two Floating point numbers in Java and print their multiplication.
The float class is a wrapper class for the primitive type float which contains several methods to effectively deal with a float value
Share
class Main { 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); } }