【单选题】下列 If 语句的功能是统计性别为男、职称为副教授以上且年龄小于40岁的人数,错误的语句是( )。
A.
If ="男" And age<40 InStr(duty, "教授" )>0 Then n=n+1
B.
If ="男" And age<40 InStr(duty="教授" or duty="副教授" )>0 Then n=n+1
C.
If ="男" And age<40 Right(duty,2)="教授" Then n=n+1
D.
If ="男" And age<40 And ( duty="教授" Or duty="副教授") Then n=n+1
【单选题】设SP=1110H,执行PUSH AX后,SP中的内容为( )
【单选题】已知递归函数f(n)的功能是计算1+2+…+n,且n≥1,应采用的代码段是______。
A.
if n>1 then return 1 else return n+f(n-1)
B.
if n>1 then return 1 else return n+f(n+1)
C.
if n<1 then return 0 else return n+f(n-1)
D.
if n<1 then return 0 else return n+f(n+1)
【单选题】递归函数f(n)的功能是计算1+2+…+n,且n≥1,则f(n)的代码段是(49)。
A.
if n>1 then return 1 else return n+f(n-1)
B.
if n>1 then return 1 else return n+f(n+1)
C.
if n>1 then return 0 else return n+f(n+1)
D.
if n<1 then return 0 else return n+f(n-1)
【单选题】关于胎膜早破患者阴道液的pH值说法正确的是
【单选题】设SP=1110H,执行PUSH AX后,SP中的内容为( )。
【单选题】设SP=1110H,执行PUSH AX后,SP中的内容为( )。