利用递归来模拟多重嵌套循环 如以下循环: 1 2 3 4 5 6 for(int i=0;i<100;i++) for(int j=0;j<100;j++) for(int k=0;k<100;k++){ System.out.println("hello!"); } 对应递归: public static void demo(){ int[] counts = n