In IntelliJ system printed numbers from 1 to 100. I confused why below condition is not pass. Any idea?
"Program powinien wyświetlać liczby parzyste od 1 do 100 włącznie. Każdą wartość wyświetl w nowej linii."
"The program should display even numbers from 1 to 100 inclusive. Display each value in a new line."
package pl.codegym.task.task04.task0435;
/*
Liczby parzyste
*/
public class Solution {
public static void main(String[] args) throws Exception {
//tutaj wpisz swój kod
for (int i = 1; i <= 100 ; i++) {
System.out.println(i);
}
}
}