Java Onlines
Java Sandbox
Java Benchmark
Math
String
Python Sandbox
PHP Sandbox
Java Sandbox
Java Benchmark
Math
String
Python Sandbox
PHP Sandbox
Online Java getExponent() function
getExponent
- Returns the unbiased exponent used in x
Title
public class Main { public static void main(String[] args) { double a = 50.45; // Input double value, Output exponent of it System.out.println(Math.getExponent(a)); float b = 83.2f; // Input float value, Output exponent of it System.out.println(Math.getExponent(b)); double c = 1.0/0; // Input infinity of double type, Output (Double.MAX_EXPONENT+1) System.out.println(Math.getExponent(c)); float d = 1.0f/0; // Input infinity of float type, Output (Float.MAX_EXPONENT+1) System.out.println(Math.getExponent(d)); float e = 0.0f; // Input zero, Output (Float.MIN_EXPONENT-1) System.out.println(Math.getExponent(e)); double f = 0.0; // Input zero, Output (Double.MIN_EXPONENT-1) System.out.println(Math.getExponent(f)); } }
Run on Java version:
14
14.0.1
14
13
13.0.2
13.0.1
13
12
12.0.2
12.0.1
12
11
11.0.7
11.0.6
11.0.5
11.0.4
11.0.3
11.0.2
11.0.1
11
10
10.0.2
10.0.1
10
9
9.0.4
9.0.1
9
8
8
7
7
6
6
Execute Code
Math Functions
abs
acos
asin
atan
atan2
cbrt
ceil
copySign
cos
cosh
exp
expm1
floor
getExponent
hypot
IEEEremainder
log
log10
log1p
max
min
nextAfter
nextUp
pow
random
rint
round
signum
sin
sinh
sqrt
tan
tanh
toDegrees
toRadians
ulp