Friday, February 6, 2026
HomeLanguagesJavaMath multiplyFull() method in Java with Examples

Math multiplyFull() method in Java with Examples

The multiplyFull(int x, int y) method of Math class is used to return the exact mathematical product of the two arguments. In the parameters, two integer values are provided and the product of both numbers expressed in long type returned by this method. 

Syntax:

public static long multiplyFull(int x, int y)

Parameters: This method accepts two Integer x, y as parameter where x and y are arguments to be multiplied. 

Return Value: This method returns long type value which is exact product of X * Y

Note: This method is added in JDK 9. Hence it won’t run on Online IDE. Below programs illustrate the multiplyFull() method: 

Program 1: 

Java




// Java program to demonstrate
// multiplyFull() method of Math class
 
public class GFG {
 
    // Main method
    public static void main(String[] args)
    {
 
        // two Integer values
        int a = 367428, b = 1374;
 
        // apply multiplyFull method
        long c = Math.multiplyFull(a, b);
 
        // print result
        System.out.println(a + " * " + b + " = " + c);
    }
}


Output:

367428 * 1374 = 504846072

Program 2: Multiplying two integers contains Integer.MAX values. 

Java




// Java program to demonstrate
// multiplyFull() method of Math class
 
public class GFG {
 
    // Main method
    public static void main(String[] args)
    {
 
        // two Integer values
        int a = Integer.MAX_VALUE;
        int b = Integer.MAX_VALUE;
 
        // apply multiplyFull method
        long c = Math.multiplyFull(a, b);
 
        // print result
        System.out.println(a + " * " + b + " = " + c);
    }
}


Output:

2147483647 * 2147483647 = 4611686014132420609

Example 3:

Java




import java.io.*;
import java.lang.Math;
 
public class GFG {
    public static void main(String[] args)
    {
        int x = 200000;
        int y = 300000;
       
        long result = Math.multiplyFull(x, y);
       
        System.out.println("Result: " + result);
    }
}


Output

Result: 60000000000
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32489 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6862 POSTS0 COMMENTS
Nicole Veronica
11983 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12073 POSTS0 COMMENTS
Shaida Kate Naidoo
6995 POSTS0 COMMENTS
Ted Musemwa
7236 POSTS0 COMMENTS
Thapelo Manthata
6946 POSTS0 COMMENTS
Umr Jansen
6930 POSTS0 COMMENTS