VOOZH about

URL: https://www.geeksforgeeks.org/java/java-program-to-multiply-two-floating-point-numbers/

⇱ Java Program to Multiply two Floating-Point Numbers - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Java Program to Multiply two Floating-Point Numbers

Last Updated : 23 Jul, 2025

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.

Approach:

  • Initialize two float type numbers.
  • Store their multiplication result in a float variable.
  • Print that results

Output
The product is: 3.0

Time complexity: O(1) it is doing constant operations
Auxiliary Space: O(1)

Comment