I've done this task multiple times. My answer is consistent. This seems simple, press F8 9 times, set the fahrenheit value to the corrections value, press F8 6 more times, and change the value of the result. Yet, I can't verify the code. What am I doing wrong?
package en.codegym.task.pro.task05.task0520;
/*
Changing shoes on the move
*/
public class Solution {
public static int result = 93;
public static void main(String[] args) {
byte correction = Byte.MAX_VALUE;
for (double fahrenheit = -459.67; fahrenheit < 451; fahrenheit += 40) {
correction *= fahrenheit;
System.out.println(correction);
}
}
}