VB中的IF语句.ppt
猜:猜:VB VB 编编 程程IF IF语句英译汉语句英译汉:IfIf the weather is good tomorrow,the weather is good tomorrow,thenthen I will go to I will go to the park.the park.IfIf the weather is good tomorrow,the weather is good tomorrow,thenthen I will go to I will go to the park,the park,elseelse I have to stay at home.I have to stay at home.If then (如果那么)If then else(如果那么否则)V VB B中的选择语句中的选择语句 IFIF语句语句用来解决有关选择用来解决有关选择结构的问题。结构的问题。选择结构与选择语句选择结构与选择语句 if if 条件 thenthen 语句A end if end if if if 条件 thenthen 语句A elseelse 语句B end if end ifIf和和end if 要成对出现要成对出现例例1 1:输入一个数到变量输入一个数到变量a a,输出它的绝对值(不用绝对值,输出它的绝对值(不用绝对值函数)函数)if _ then _end if a0a=-aPrint 意为打印,是输出语句。abprint aprint bab练习1:输入两个不相等的数输入两个不相等的数a a,b b,比较大小,将,比较大小,将大数放在大数放在a a中,小数放在中,小数放在b b中,然后输出中,然后输出a a,b b if _ then _end if a00,x=0-1,x0if _ then _else if _ then _ else _ end ifend if print yx0y=1y=-1x=0y=0分分支支结结构构1分分支支结结构构2分支嵌套双分支嵌套双分支if 条件条件1 then 语句语句1else if 条件条件2 then 语句语句2 else 语句语句3 end ifend if分分支支结结构构1分分支支结结构构2注意:注意:每一层的每一层的end if结束本层判断。结束本层判断。练习2:购买地铁车票,若乘购买地铁车票,若乘1 14 4站,站,3 3元元/位;若乘位;若乘5 59 9站,站,4 4元元/位;若乘位;若乘1010站以上,站以上,5 5元元/位;输入人数位;输入人数personperson、站数、站数n n,输出应付款,输出应付款paypay。流程图程序代码if if n=4 n=4 thenthen pay=3*person pay=3*personelse else if if n=9 n=9 thenthen pay=4*person pay=4*person elseelse pay=5*person pay=5*person end ifend ifend if end if print payprint pay选选择择结结构构单分支结构单分支结构双分支结构双分支结构嵌套分支结构嵌套分支结构 if if 条件条件 thenthen 语句语句A A end if end if if if 条件条件 thenthen 语句语句A A else else 语句语句B B end if end ifif 条件条件1 then 语句语句1else if 条件条件2 then 语句语句2 else 语句语句3 end ifend if小结双分支嵌套双分支双分支嵌套双分支温馨提示:下节课在机房(F405F405)上课,记得带上练习纸和鞋套。