6. February is the only month ______ has fewer than 30 days.
举一反三
- Which month has 28 days ? 未知类型:{'label': 'questionDesc', 'content': '请选择正确答案。', 'isMemberControl': 0, 'type': 181} A: February B: Every mouth
- Under ______________, the standard work week is compressed into fewer than five days.
- Why is there ____________ traffic on the street in February than in May? A: less B: little C: fewer D: few
- 如果month=4,下面代码的输出结果是( ) int days=0; switch(month) { case 2: days=28; break; case 4: case 6: case 9: case 11: days=30; break; default: days=31; break; } Console.WriteLine(days);
- 当month 等于6时,下面代码的输出结果是()。 int days = 0; switch (month) { case 2: days = 28; break; case 4: case 6: case 9: case 11: days = 30; break; default: days = 31; break; }