What is Power function in Java? – Know its uses

Last updated on Jun 17,2021 45.9K Views
A tech enthusiast in Java, Image Processing, Cloud Computing, Hadoop. A tech enthusiast in Java, Image Processing, Cloud Computing, Hadoop.

What is Power function in Java? – Know its uses

edureka.co

Power function in Java is used to calculate a number raised to the power of some other number. This function accepts two parameters and returns the value of the first parameter raised to the second parameter. In this article, I will tell you the use of a power function.

Below topics are covered in this article:

Let’s get started!

Introduction to Power function in Java

Power function in Java is of type java.lang.Math.pow() library. It is mainly used to return the value of the first argument raised to the power of the second argument. It works similar to the exponents that we use in our mathematics.

Syntax:

double pow(double base, double exponent)

Return: This method returns baseexponent.

With this, now let’s move further and look the various ways of using pow() with the help of below examples.

Examples of Power Function

Example 1: Demonstrates the working of java.lang.Math.pow() method.

import java.lang.Math;
public class Example1 {
public static void main(String args[]) {
double x = 60;
double y = 3;
System.out.println(Math.pow(x, y));
x = 3;
y = 4;
System.out.println(Math.pow(x, y));
x = 2;
y = 5;
System.out.println(Math.pow(x, y));
}
}

Output:

216000
81
32

Example 2:

public class Example2 {
public static void main(String[] args) {
double a = 18.0;
double b = -3;
//return (18) power of -3
System.out.println(Math.pow(a, b));
}
}

Output:

1.7146776406035665294924554183813e-4

Example 3:

public class Example3 {
public static void main(String[] args) {
double a = -107;
double b = 0.6;
//returns NaN
System.out.println(Math.pow(a, b));
}
}

Output: 

NaN

With this, we come to an end of this article on Power Function in Java. I hope you found it informative and understood the various uses of pow() method. If you wish to learn fundamentals of Java in depth, kindly check other blogs on Java.

Check out the Java Online Course by Edureka, a trusted online learning company with a network of more than 250,000 satisfied learners spread across the globe. We are here to help you with every step on your journey, for becoming a besides this java interview questions, we come up with a curriculum which is designed for students and professionals who want to be a Java Developer. 

Got a question for us? Please mention it in the comments section of this “Power Function in Java” article and we will get back to you as soon as possible.

Upcoming Batches For Java Certification Training Course
Course NameDateDetails
Java Certification Training Course

Class Starts on 11th May,2024

11th May

SAT&SUN (Weekend Batch)
View Details
Java Certification Training Course

Class Starts on 1st June,2024

1st June

SAT&SUN (Weekend Batch)
View Details
BROWSE COURSES
REGISTER FOR FREE WEBINAR UiPath Selectors Tutorial