多选题
Given:
2. class RainCatcher {
3. static StringBuffer s;
4. public static void main(String[] args)
5. Integer i = new Integer(42);
6. for(int j = 40; j < i; i--)
7. switch(i) {
8. case 41: s.append("41 ");
9. default: s.append("def ");
10. case 42: s.append("42 ");
11. }
12. System.out.println(s);
13. } }
What is the result?