Float Division von Null
float x = 1.0f / 0.0f;
System.out.println(x); // Infinity
float y = -1.0f / 0.0f;
System.out.println(y); // -Infinity
float z = 0.0f / 0.0f;
System.out.println(z); // NaN
Merlin4 (ranken)