I\'m making a simple calculator for this homework, and Java is returning \"Infinity\" when divided by 0.
I need to display some error message, when I get infinity. T
Please see if it equal to Double.POSITIVE_INFINITY
double result; result = 4.0 / 0.0;