// Starting on 0: for(int i = 0; i < 5; i++) { System.out.println(i + 1); } // Starting on 1: for(int i = 1; i <= 5; i++) { System.out.println(i); }