它采用括号中的表达式,后面跟随语句或语句块。如果表达式为真,则执行语句或语句块,否则跳过这些语句。
不同形式的if语句
形式1
if (expression)
statement;
如果你有一个语句,你可以使用没有大括号{}的if语句。
形式2
if (expression) {
Block of statements;
}
if语句 – 执行顺序
例子
/* Global variable definition */
int A = 5 ;
int B = 9 ;
Void setup () {
}
Void loop () {
/* check the boolean condition */
if (A > B) /* if condition is true then execute the following statement*/
A++;
/* check the boolean condition */
If ( ( A < B ) && ( B != 0 )) /* if condition is true then execute the following statement*/ {
A += B;
B--;
}
}
发布者:suiyublg,转转请注明出处:https://huibian.net/1008-3/
