/* * Demonstration of using loops with arrays: * Acknowledgement of the Arrays class * Output traversal * Nonstandard traversals * Accumulation traversal (every other number?) * Searching an array * Input traversal * * */ public class ArrayLoops { public static void main(String[] args) { String[] team = { "John", "Marie", "Danielle", "Daveed", "Javier", "Vanessa" }; double[] prices = { 1.99, 2.25, 2.99, 9.99, 4.49 }; } }