多选题
Given:
2. public class Tolt {
3. public static void checkIt(int a) {
4. if(a == 1) throw new IllegalArgumentException();
5. }
6. public static void main(String[] args) {
7. for(int x=0; x<2; x++)
8. try {
9. System.out.print("t ");
10. checkIt(x);
11. System.out.print("t2 ");
12. }
13. finally {System.out.print("f "); }
14. } }
What is the result?