/* Example of recursion. What is the output of the following program? Laura Toma csci107 */ public class RecPrintThree { public static void main (String args[]) { printHello(10); } // end of main public static void printHello(int n) { if (n >0) { System.out.println("Hello World!"); printHello(n-1); } } } // end of class