British people usually use the format of “month-day-year”.
举一反三
- There are two kinds of formats for date. In America, people often use month, date, year format in a letter. While British people like to use date month year format in their writing.
- It is usually to show the date in the order of day/month/year (American practice), or month/day/year (British practice).
- New Year's Day is the time for British people to makenew year resolutions.
- On the fifth day of the fifth month, what do people usually do?
- 程序:class Birthday{int year;int month;int day;public Birthday(int year,int month,int day){year = year; month = month; day = day;}public static void main(String[] args){Birthday birth = new Birthday(1980,10,22); System.out.println(year);}}程序运行后的输出是哪项? A: 1980 B: 10 C: 22 D: 0 E: 编译出错