按键精灵多个if语句套用

按键精灵多个if语句套用,第1张

//方法一:

FindPic 0,0,1024,768,"Attachment:\神盾1.bmp",0.9,intX,intY

If intX > 0 And intY > 0 Then

    call a()

End If

FindPic 0,0,1024,768,"Attachment:\神盾2.bmp",0.9,intX,intY

If intX > 0 And intY > 0 Then

    call a()

End If

FindPic 0,0,1024,768,"Attachment:\神盾3.bmp",0.9,intX,intY

If intX > 0 And intY > 0 Then

    call a()

End If

FindPic 0,0,1024,768,"Attachment:\神盾4.bmp",0.9,intX,intY

If intX > 0 And intY > 0 Then

    call a()

End If

//方法二:

For i=1 to 4

    FindPic 0,0,1024,768,"Attachment:\神盾"&i&".bmp",0.9,intX,intY

    If intX > 0 And intY > 0 Then

        call a()

        Exit For

    End If

Next

Sub a()

End Sub

c语言中多个if的用法的用法你知道吗?下面我就跟你们详细介绍下c语言中多个if的用法的用法,希望这些关于c语言的知识能帮到大家。

c语言中多个if的用法:基本形式if

if(表达式) 语句

其语义是:如果表达式的值为真,则执行其后的语句,否则不执行该语句。其过程可表示为下图。

【例5-3】

01.#include <stdio.h>

02.int main(void){

03.int a,b,max

04.printf("\n input two numbers: ")

05.scanf("%d%d",&a,&b)

06.max=a

07.if (max<b) max=b

08.printf("max=%d",max)

09.return 0

10.}

本例程序中,输入两个数a、b。把a先赋予变量max,再用if语句判别max和b的大小,如max小于b,则把b赋予max。因此max中总是大数,最后输出max的值。

c语言中多个if的用法:if-else

if(表达式)

语句1

else

语句2

其语义是:如果表达式的值为真,则执行语句1,否则执行语句2 。其执行过程可表示为下图。

【例5-4】

01.#include <stdio.h>

02.int main(void){

03.int a, b

04.printf("input two numbers: ")

05.scanf("%d%d",&a,&b)

06.if(a>b)

07.printf("max=%d\n",a)

08.else

09.printf("max=%d\n",b)

10.return 0

11.}

输入两个整数,输出其中的大数。改用if-else语句判别a,b的大小,若a大,则输出a,否则输出b。

c语言中多个if的用法:if-else-if形式

前二种形式的if语句一般都用于两个分支的情况。当有多个分支选择时,可采用if-else-if语句,其一般形式为:

if(表达式1)

语句1

else if(表达式2)

语句2

else if(表达式3)

语句3

else if(表达式m)

语句m

else

语句n

其语义是:依次判断表达式的值,当出现某个值为真时,则执行其对应的语句。然后跳到整个if语句之外继续执行程序。 如果所有的表达式均为假,则执行语句n。然后继续执行后续程序。 if-else-if语句的执行过程如下图所示。

【例5-5】

01.#include <stdio.h>

02.int main(void){

03.char c

04.printf("input a character:")

05.c=getchar()

06.if(c<32)

07.printf("This is a control character\n")

08.else if(c>='0'&&c<='9')

09.printf("This is a digit\n")

10.else if(c>='A'&&c<='Z')

11.printf("This is a capital letter\n")

12.else if(c>='a'&&c<='z')

13.printf("This is a small letter\n")

14.else

15.printf("This is an other character\n")

16.return 0

17.}

猜你喜欢:

1. if的用法

2. c语言学习心得6篇

3. if句型的用法总结

4. c语言有哪些函数必须介绍

5. 英语语法if的用法解释


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8102134.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-13
下一篇 2023-04-13

发表评论

登录后才能评论

评论列表(0条)

保存