A. 这里有今年和去年5百万美元的销售额差价。
B. 今年和去年的销售额相差5百万美元。
C. 今年和去年的销售额有5百万美元的不同。
第1题:
已知学生记录描述为: 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;
第2题:
有以下定义和语句: struct workers {int num;char name[20];char C; struct {int day;int month;int year;)S; }; struct workers w,*pw; pw=&w; 能给w中year成员赋1980的语句是( )。
A.*pw.year=1980;
B.w.year=1980;
C.pw->year=1980
D.w.S.year=1980;
第3题:
5、在下面函数中,返回年份的表达式是()。
A.year(5/3/2010)
B.year(“5/3/2010”)
C.year(%5/3/2010%)
D.year(#5/3/2010#)
第4题:
有以下定义和语句
Struct Workers
{ int num;char name[20];char c;
struct
{ int day;int month;int year;}s;
};
Struct Workers W,*pe;
PW=&W;
能给W中yeaR成员赋1980的语句是
A.*pW.yeaR=1980;
B.W.yeaR=1980;
C.pW->yeaR=1980;
D.W.s.yeaR=1980;
第5题:
判断闰年的函数,把下列语句补充完整。 leap.year <- function (year) { ifelse (, TRUE, FALSE) }
A.(year %% 4 == 0 & year %% 100 != 0)
B.(year %% 4 == 0 & year %% 100 != 0) || year %% 400 == 0
C.(year %% 4 == 0 || year %% 100 != 0)
D.(year/4 == 0 & year/100 != 0) || year/400 == 0
第6题:
使用变量year代表年份,以下表示判断year是否为闰年的布尔表达式是 。
A.(year % 4 == 0) and (not(year % 100 == 0)) or (year % 400 == 0)
B.(year % 4 == 0) and (not(year % 400 == 0)) or (year % 100 == 0)
C.(year % 4 == 0) and (year % 100 == 0) or (year % 400 == 0)
D.(year % 4 == 0) or (not(year % 100 == 0)) and (year % 400 == 0)