//BigLoop //a program to run itself over and over again //1.2.07 Keith E Gatling import java.text.*; //needed for number formats public class BigLoop2 {//start class //======== parking space 1 //======== parking space 2 //======== parking space 3 //======== main parking space public static void main() {//start main //variables char ans='y'; //big loop while (ans=='y') {//start while //insert method call below //ask to do over System.out.print("\nRun again (y/n)? "); ans=gatling.getAns(); }//end while //ending System.out.println("\nWe're finally done here. See ya!"); }//end main }//end class