Arduino If ... else語(yǔ)句

2018-11-02 17:49 更新

一個(gè) if 語(yǔ)句后面可以跟隨一個(gè)可選的else語(yǔ)句,當(dāng)表達(dá)式為false時(shí)執(zhí)行。

if ... else語(yǔ)句語(yǔ)法

if (expression) {
   Block of statements;
}
else {
   Block of statements;
}

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

if ... else語(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++;
   }else {
      B -= A;
   }
}


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

掃描二維碼

下載編程獅App

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

編程獅公眾號(hào)