Online Java Compiler By
JavaTpoint.com
public class IEEEremainderExample4 { public static void main(String[] args) { double a = 63; double b = 0; // Second argument is zero, Output NaN System.out.println(Math.IEEEremainder(a, b)); } }
Output