/* What is the output of the following program? Laura Toma csci101 */ public class LimitedWhee { public static void main (String args[]) { loop(10); } // end of main public static void loop (int times) { System.out.print(times + ":" ); if (times > 0) { System.out.println("Whee!"); loop(times - 1); } } //end of loop } // end of class