在:Excel表的A1单元格中键入'80,在B1单元格中输入条件函数=IF(A1>=80,“Good”,IF(A1>=60,“Pass”,“Fail”)),则B1单元中显示( )。
A:Fail B:Pass C:Good D:IF(A1>=60,“Pass”,“Fail”)
阅读下列FORTRAN程序 READ(*,*)SCARE IP(SCARE.GE.85.0)WRITE(*,*)'Very GooD' IP(SCARE.GE.75.0)WRITE(*,*)'Good!' IP(SCARE.GE.60.0)WRITE(*,*)'Pass!' IP(SCARE.LT.60.0)WRITE(*,*)'Pass!' 在执行上述程序时,如果从键盘输入
,则运行后的输出结果为()。
A:Good! B:Pass! C:Good! D:Pass! E:Very Good! F:Pass!
在Excel工作表的A1单元格中输入80,在B1单元格中输入条件函数:IF(A1>=80,“GOOD”,IF(A1>=60,“PASS”,“FAIL”)),则B1单元格中显示( )。
A:FAIL B:PASS C:GOOD D:IF(A1>=60,“PASS”,“FAIL”)
John is not (enough intelligent) to (pass) (this) (economics) class without help.
A:enough intelligent B:pass C:this D:economics
John is not (enough intelligent) to (pass) (this) (economics) class without help.
A:enough intelligent B:pass C:this D:economics
下面程序段执行结果为
x=Int(Rnd( )+4)
Select Case x
Case 5
Print"excellent"
Case4
Print"good"
Case 3
Print"pass"
Case Else
Print"fail"
End Select
A:excellent good pass fall