Arduino 的 do-while 循环


do-while 循环在 Arduino 中的语法 与在 C 中的语法类似。如下所示 −

do{
   //Code
} while (condition);

注意末尾的分号。

示例

void setup() {
   // put your setup code here, to run once:
   Serial.begin(9600);
   Serial.println();

   int i = 5;
   do{
      Serial.println(i);
      i--;
   } while(i > 0);

}

void loop() {
   // put your main code here, to run repeatedly:
}

输出

串口监视器的输出如下所示 −

更新于: 2021 年 5 月 29 日

1K+ 浏览量

开启你的职业

完成课程即可获得认证

开始
广告