What a cold day! It ’s ________ day for a walk. A. not much ofB. not a much ofC. not much of aD. not much a
What a cold day! It ’s ________ day for a walk.
A. not much of
B. not a much of
C. not much of a
D. not much a
相关考题:
已知学生记录描述为 struct student { int no; char name[20]; char sex; struct { int year; int month; int day; } birth; }; struct student s;变量s中的“生日”应是“1985年4月4日”,下列对“生日”的正确赋值方式是______。A.year=1985;month=4;day=4;B.birth.year=1985;birth.month=4;birth.day=4;C.s.year=1985;s.month=4;s.day=4;D.s.birth.year=1985;s.birth.month=4;s.birth,day=4;
已知学生记录描述为:struct student{ int no;char name[20],sex;struct{ int year,month,day;} birth;};struct student s;设变量s中的"生日"是"1984年11月12日",对"birth"正确赋值的程序段是A.year=1984;month=11;day=12;B.s.year=1984;s.month=11;s.day=12;C.birth.year=1984;birth.month=11;birth.day=12;D.s.birth.year=1984;s.birth.month=11;s.birth.day=12;
已知学生记录描述为: struct student { int no; char name[20],sex; struct { int year,month,day; } birth; }; struct student s; 设变量s中的“生日”是“1984年11月12日”,对“birth”正确赋值的程序段是( )。A.year=1984;month=11;day=12;B.s.year=1984;s.month=11;s.day=12;C.birth.year=1984;birth.month=11;birth.day=12;D.s.birth.year=1984;s.birth.month=11;s.birth.day=12;
给定日期DD,可以计算该日期当月最大天数的正确表达式是( )。A.Day(DD)B.Day(DateSerial(Year(DD), Month(DD), day(DD)))C.Day(DateSerial(Year(DD), Month(DD), 0))D.Day(DateSerial(Year(DD), Month(DD)+1, 0))
Calendar类中,表示当前日期是星期几的类常量是()。A.Calendar.DAY_OF_YEARB.Calendar.DAY_OF_MONTHC.Calendar.DAY_OF_WEEK_IN_MONTHD.Calendar.DAY_OF_WEEK
已知学生记录描述如下,设变量s中的“生日”应是“1984年11月11日”,下列对生日的正确赋值方式是()。 struct student{ int no; char name[20]; char set; struct{ int year; int month; int day; } birth; }; struct student s;A.year=1984;month=11;day=11;B.birth.year=1984; birth.month=11; birth.day=11C.s.year=1984;s.month=11;s.day=11D.s.birth.year=1984;s.birth.month=11; s.birth.day=11;
Calendar类中,表示当前日期是星期几的类常量是()。A.Calendar.DAY_OF_WEEKB.Calendar.DAY_OF_WEEK_IN_MONTHC.Calendar.DAY_OF_MONTHD.Calendar.DAY_OF_YEAR