วันเสาร์ที่ 24 กุมภาพันธ์ พ.ศ. 2561

continue คำสั่งกลับไปต้น Loop ใช้ตรวจจับเหตุการณ์ เมื่อเหตุการณ์เกิดขึ้นก็กลับไปทำต้น Loop ภาษาC











continue คำสั่งกลับไปต้น Loop ใช้ตรวจจับเหตุการณ์ เมื่อเหตุการณ์เกิดขึ้นก็กลับไปทำต้น Loop ภาษาC
24/2/2561 SONGCHAI PRAPATRUNGSEE
continue คำสั่งกลับไปต้น Loop ใช้ตรวจจับเหตุการณ์ เมื่อเหตุการณ์เกิดขึ้นก็กลับไปทำต้น Loop ภาษาC

/* 24/2/2561
continue
by SOM MCU */

#include <REGX51.H> //REGISTER 51 MCU

void main(void)
{
        char x,i,a,b;

for(i=0; i<15; i++)
{
        a++;
  if(x==9) continue;
       
        b++;
}

x=0;
}

//////////////////////////////////////////////////////////////////////////////

continue คือ คำสั่งกลับไปต้น Loop
ใช้ตรวจจับเหตุการณ์ เมื่อเหตุการณ์เกิดขึ้นกลับไปทำต้น Loop

continue
[Control Structure]
Description
The continue statement skips the rest of the current iteration of a loop (for, while, or do…​while). It continues by checking the conditional expression of the loop, and proceeding with any subsequent iterations.

Example Code
The following code writes the value of 0 to 255 to the PWMpin, but skips the values in the range of 41 to 119.

for (x = 0; x <= 255; x ++)
{
    if (x > 40 && x < 120){      // create jump in values
        continue;
    }

    analogWrite(PWMpin, x);
    delay(50);
}




ไม่มีความคิดเห็น: