18038843dbeb5ef.png3. _____
A: weekday
B: weekly
C: weekend
D: weeknight
A: weekday
B: weekly
C: weekend
D: weeknight
举一反三
- Questions 15 ~ 17 are based on the dialogue between a couple about housework. When does the dialogue take place A: A weekday afternoon. B: A weekday evening. C: A weekend afternoon. D: A weekend evening.
- 有枚举类型的声明:enum WEEKDAY {Sun=7, Mon=1,Tue, Wed, Thu, Fri, Sat} workday;那么以下语句错误的是_____ A: enum WEEKDAY today=Fri;if( today >Fri) printf("Today is weekend!\n"); B: enum WEEKDAY today;today = (enum WEEKDAY)4;if( today >Fri) printf("Today is weekend!\n"); C: enum WEEKDAY today=Fri;tmp=today-2;if( tmp > 0) printf("Today is weekend!\n"); D: today = (enum WEEKDAY)4;if( today-2 > Fri) printf("Today is weekend!\n");
- I suggest we should have a ______ project meeting over the phone call in the near future. A: weekly B: weekend C: week
- 执行下述语句后的结果是enum weekday {sun, mon=3, tue, wed, thu}; enum weekday day; day = wed; printf("%d ",day); A: 5 B: 3 C: 4 D: 编译时出错
- 若有如下定义,则( ) 是不正确的语句。 enum weekday{ mon,tue,wed,thu,fri } workday; A: workday=(enum weekday)3; B: workday=(enum weekday)(4-2); C: workday=3; D: workday=thu;