Arduino If語(yǔ)句

2018-11-02 17:30 更新

它采用括號(hào)中的表達(dá)式,后面跟隨語(yǔ)句或語(yǔ)句塊。如果表達(dá)式為真,則執(zhí)行語(yǔ)句或語(yǔ)句塊,否則跳過(guò)這些語(yǔ)句。

不同形式的if語(yǔ)句

形式1

if (expression)
   statement;

如果你有一個(gè)語(yǔ)句,你可以使用沒(méi)有大括號(hào){}的if語(yǔ)句。

形式2

if (expression) {
   Block of statements;
}

if語(yǔ)句 - 執(zhí)行順序

if語(yǔ)句

例子

/* 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--;
   }
}


以上內(nèi)容是否對(duì)您有幫助:
在線(xiàn)筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)