error has been detected by HotSpot Virtual Machine EXCEPTION_FLT_DIVIDE_BY_
Hi everyone,
i've got this error
# An unexpected error has been detected by HotSpot Virtual Machine:
#
# EXCEPTION_FLT_DIVIDE_BY_ZERO (0xc000008e) at pc=0x00bda829,
pid=1608, tid=1232
when i trying to use variables with type double or float.
for example:
public class AverageFruit {
public static void main(String[] args) {
// Declare and initialize three variables
double numOranges = 50.0E-1; // Initial value is 5.0
double numApples = 1.0E1;// Initial value is 10.0
double averageFruit = 0.0;
averageFruit = (numOranges + numApples)/2.0;
System.out.println("A totally fruity program");
System.out.println("Average fruit is " + averageFruit);
}
}

