首页题库练习题目详情
Visual Basic语言程序设计单选题中等

以下哪个If语句的写法是正确的?

AIf x > 5 Then: MsgBox "大" Else: MsgBox "小"
BIf x > 5 Then MsgBox "大" Else MsgBox "小"
CIf x > 5 Then MsgBox "大" Else MsgBox "小"
DIf x > 5 Then MsgBox "大" Else MsgBox "小" End If