О чем речь? Какое значение в каком окне менять?
package com.javarush.task.pro.task05.task0520;
public class Solution {
public static int result = -14;
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);
}
}
}