/*********************************************************************
 * Name:
 * Login:
 * Precept:
 * 
 * Description: Prints the integers from 100 to 200, 5 per line.
 **********************************************************************/

// Debugging exercise!
// This version also doesn't compile. Compiler says:
// 1 error found:
// File: C:\cos126\loops\Buggy2FivePerLine.java [line: 20]
// Error: cannot find symbol
// symbol : variable i
// location: class Buggy2FivePerLine

public class Buggy2FivePerLine { 
    public static void main(String[] args) { 
       
        // print integers from 100 to 200, 5 per line
        for (int i = 100; i < 200; i+=5) {
            for (int j = 0; j < 5; j+=1) 
                System.out.print(i +  j + " ");
           
            System.out.println();
        }
        System.out.println(i);
    }
}