Det java.lang.Math.pow() bruges til at returnere værdien af det første argument hævet til det andet arguments magt. Returtypen af pow()-metoden er dobbelt.
Syntaks
public static double pow(double a, double b)
Parameter
a= base b= exponent
Vend tilbage
Denne metode returnerer værdien af ab
- Hvis det andet argument er positivt eller negativt Nul , vil denne metode vende tilbage 1.0 .
- Hvis det andet argument ikke er et tal (NaN) , vil denne metode vende tilbage NaN .
- Hvis det andet argument er 1 , vil denne metode returnere det samme resultat som første argument .
Eksempel 1
public class PowExample1 { public static void main(String[] args) { double x = 5; double y = 4; //returns 5 power of 4 i.e. 5*5*5*5 System.out.println(Math.pow(x, y)); } }Test det nu
Produktion:
625.0
Eksempel 2
public class PowExample2 { public static void main(String[] args) { double x = 9.0; double y = -3; //return (9) power of -3 System.out.println(Math.pow(x, y)); } }Test det nu
Produktion:
java multithreading
0.0013717421124828531
Eksempel 3
public class PowExample3 { public static void main(String[] args) { double x = -765; double y = 0.7; //return NaN System.out.println(Math.pow(x, y)); } }Test det nu
Produktion:
NaN
Eksempel 4
public class PowExample4 { public static void main(String[] args) { double x = 27.2; double y = 1.0; // Second argument is 1 so output is 27.2 System.out.println(Math.pow(x, y)); } }Test det nu
Produktion:
3.5461138422596736