翻译句子Valentine's Day in China, the seventh day of the seventh lunar month, Niu Lang and Zhi Nv will meet on a bridge of magpies across the Milky Way.
第1题:
英式标准的日期写法应为()
A、day-month-year
B、mouth-day-year
C、year-month-day
D、year-day-month
第2题:
给定日期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))
第3题:
有以下程序: Class Date {public: Date(int y,int m,int d); {year=y; month=m; day=d;} Date(int y=2000) {year=y; month=10; day=1;) Date(Date &D) {year=d.year; month=d.month; day=d.day;} void print() {cout<<year<<“.”<<mo
A.2
B.3
C.4
D.5
第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;
第5题:
给定日期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))
第6题:
已知学生记录描述如下,设变量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=11
C.s.year=1984;s.month=11;s.day=11
D.s.birth.year=1984;s.birth.month=11; s.birth.day=11;