Power Function in Java Example

What is Power function in Java? – Know its uses

Last updated on Jun 17,2021 39K Views


A tech enthusiast in Java, Image Processing, Cloud Computing, Hadoop. A tech enthusiast in Java, Image Processing, Cloud Computing, Hadoop.

52 / 72 Blog from Java Core Concepts

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:

  • Introduction to Power function in Java
  • Examples of Power function

Let's get started!

Introduction to Power function in Java

Java Pow() - Power Function in Java - EdurekaPower 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)                              
  • base − Any primitive data type.
  • exponent − Any primitive data type

Return: This method returns baseexponent .

  • If the second argument is positive or negative zero, this method will return 1.0.
  • If the second argument is not a number (NaN), this method will return NaN.
  • If the second argument is 1, this method will return the result same as the first argument.

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 theJava 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 Name Date
Java Certification Training Course

Class Starts on 9th July,2022

9th July

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

Class Starts on 13th August,2022

13th August

SAT&SUN (Weekend Batch)
View Details

mcleodfultentreske.blogspot.com

Source: https://www.edureka.co/blog/java-power-function/

0 Response to "Power Function in Java Example"

ارسال یک نظر

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel