// WhileLoopStudy: the anatomy of a "while" loop public class WhileLoopStudy { public static void main( String[] args) { int index = 1; // priming while (index <=10) // test { System.out.println("Index: " + index); index++; // update } } }