程序的执行就象水在管道中流动,不加以控制,只能从上流到下。要想体现“智能”,就要进行控制。
控制语句有两种,一种是条件句,一种是循环句。
条件句
设立某条件,控制语句,有三种句式:
(一)If ... Then
包括:1.只执行一条语句:(If condition then statement)如:
If intAge>23 Then print "你己经超龄" ‘当年龄超过23岁时显示“你己经超龄”
2.执行多条语句:
If intAGe>23 Then
print "你己经超龄"
print “对不起了”
End If
另外:
几个语句可用逻辑符连接:
If (intAge < 23 and strCountry = "China" and intSkill >10) then
print "欢迎你"
End
(二)If ... Then ... Else 见下贴
(三)Select Case
阅读(655) | 评论(0) | 转发(0) |