多选题
Given that Calendar.MONTH starts with January = = 0, and given:
3. import java.util.*;
4. public class Wise {
5. public static void main(String[] args) {
6. Calendar c = Calendar.getInstance();
7. c.set(1999,11,25);
8. c.roll(Calendar.MONTH, 3);
9. c.add(Calendar.DATE, 10);
10. System.out.println(c.getTime());
11. } }
And, if the program compiles, what date is represented in the output?