/** * FrootLoops is a collection of functions to * test various loops (and a chance to think about cereal). * * @author (your name) * @version MM-DD-2016 */ public class FrootLoops { public FrootLoops() { } public void red(int lowerBound, int upperBound, int step) { System.out.println("Red Loop"); } public void green(int lowerBound, int upperBound, int step) { System.out.println("Green Loop"); } public void purple() { System.out.println("Purple Loop"); } public void blue(int val) { System.out.println("Blue Loop"); } public void orange(int val) { System.out.println("Orange Loop"); } }