El java.lang.Math.pow() s'utilitza per retornar el valor del primer argument elevat a la potència del segon argument. El tipus de retorn del mètode pow() és doble.
Sintaxi
public static double pow(double a, double b)
Paràmetre
a= base b= exponent
Tornar
Aquest mètode retorna el valor de ab
- Si el segon argument és positiu o negatiu Zero , aquest mètode tornarà 1.0 .
- Si el segon argument no és un nombre (NaN) , aquest mètode tornarà NaN .
- Si el segon argument és 1 , aquest mètode retornarà el mateix resultat que el primer argument .
Exemple 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)); } }Prova-ho ara
Sortida:
625.0
Exemple 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)); } }Prova-ho ara
Sortida:
java té el següent
0.0013717421124828531
Exemple 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)); } }Prova-ho ara
Sortida:
NaN
Exemple 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)); } }Prova-ho ara
Sortida:
3.5461138422596736