Arduino 嵌套循環(huán)

2018-11-07 17:24 更新

C語(yǔ)言允許你在另一個(gè)循環(huán)內(nèi)使用一個(gè)循環(huán)。下面的例子說(shuō)明了這個(gè)概念。

嵌套循環(huán)語(yǔ)句語(yǔ)法

for ( initialize ;control; increment or decrement) {
   // statement block
   for ( initialize ;control; increment or decrement) {
      // statement block
   }
}

例子

for(counter = 0;counter <= 9;counter++) {
   //statements block will executed 10 times
   for(i = 0;i <= 99;i++) {
      //statements block will executed 100 times
   }
}

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

掃描二維碼

下載編程獅App

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

編程獅公眾號(hào)