/* Mr Bergquist, Garfield AP CS, 2011
   Demonstration for solving loop problems
*/
public class LoopDemosStart {
	public static void main(String[] args) {
		countUpByFour ();
		countDown();
	}
	
	// Print out the number sequence: -7, -3, 1, 5, 9, 13
	// Formula from our Worksheet shows: 4 * count - 11
	public static void countUpByFour () {
		for(int <Initialize> ; <test> ; <update> ) {
			System.out.print(???);
		}
	}
			
	// Countdown example
	public static void countDown () {
	   // First Print hello 10 times by twos...
		for(int <Initialize> ; <test> ; <update> ) {
			System.out.print(???);
		}
		
		// Loop can count down 10 to 1
		for(int <Initialize> ; <test> ; <update> ) {
			System.out.print(???);
		}
		System.out.println ("Blastoff");
		
		}

	}
			
}
