class Practicum {
public static void main(String[] args) {
int x = -5;
boolean isNegative = x < 0; // Исправленная строка
System.out.println("Значение переменной isNegative = " + isNegative);
}
}
С этим исправлением код должен скомпилироваться и работать корректно, выводя `true`, так как `x` действительно меньше нуля.
public class Main {
public static void main(String[] args) {
int x = -5;
boolean isNegative = x < 0;
System.out.println("Значение переменной isNegative = " + isNegative);
}
}