// //for loop-for loops are used when you need to repeat instruction(s) an // exact number of times // public class program4 { static final int MAX=10; public static void main(String[] args) { System.out.println("Count Down to Launch!\n"); for(int count=MAX;count>0;count--) {//compound statement System.out.print(count); System.out.println("..and counting."); } System.out.println("\nBlast off!!!"); } }