Arduino入門:制御文 while

ArduinoのSketch(スケッチ)で、while制御文を使用する方法を解説します。

//Arduino Sketch Example: while syntax
//Date: 2014.12.28
//Auther: easy labo

//Syntax
while(expression){
  // statement(s)
}

while文の書式は、C言語と同様です。expressionがfalseになるまで、while内の処理が繰り返されます。

//Arduino Sketch Example: while statement
//Date: 2014.12.28
//Auther: easy labo

//Example
int i = 0;
while(i < 100){
  // do something here
  i++;
}

上記の例の様にして使用する事ができますので、一例として挙げておきます。

→その他のArduino関連情報

Sponsored Link