Boa tarde, referente ao exercício três a resposta seria de 150 a 299, porém o código está exibindo até o valor 300.
class ImprimeIntervaloComWhile {
public static void main(String[] args) { int i = 150; while (i <= 300){ System.out.println(i + " "); i++; } } }