Java Onlines
Java Sandbox
Java Benchmark
Math
String
Python Sandbox
PHP Sandbox
Java Sandbox
Java Benchmark
Math
String
Python Sandbox
PHP Sandbox
Online Java nextUp() function
nextUp
- Returns the floating point value adjacent to x in the direction of positive infinity
Title
public class Main { public static void main(String[] args) { float a = 0.0f / 0; // Input NaN, Output NaN System.out.println(Math.nextUp(a)); double b = 744.93; // Input double value, Output adjacent floating-point System.out.println(Math.nextUp(b)); float c = 328.7f; // Input float value, Output adjacent floating-point System.out.println(Math.nextUp(c)); float d = 0.0f; // Input zero, Output Float.MIN_VALUE for float System.out.println(Math.nextUp(d)); double e = 0.0; // Input zero, Output Double.MIN_VALUE for double System.out.println(Math.nextUp(e)); } }
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