填空题
阅读下列程序段 int i=3,j; outer:while(i>0){ j=3; inner:while(j>0){ if(j<2) break outer; System.out.println(j+"and"+i); j--; } i--; } 被输出到屏幕的第一行结果是 【9】 。