School will be closed if the air temperature is -25f or lower. if (degrees < -25){ System.out.println("School will be closed due to extreme cold"); }else{ System.out.println("School is open"); } Which of the following initializations for degrees, if any, will demonstrate that the code segment may not work as intended? the code works as intended. -25 25 -30 -26