while by Accords (IT SMART CLUB 2006) by Accords 1
7. คำสั่ง while false while (เงื่อนไข) { คำสั่งที่ต้องทำ; คำสั่งที่ต้องทำ; } true
ตัวอย่างที่ 9 while เพื่อทำการคำนวณผลบวกของเลขตั้งแต่ 1-100 int sum = 0, number = 1; while(number <= 100) { sum = sum + number; number++; } 3
Do-while by Accords (IT SMART CLUB 2006) by Accords 4
8. คำสั่ง do ..while do { คำสั่งที่ต้องทำ; คำสั่งที่ต้องทำ; } while (เงื่อนไข); true false 5
ตัวอย่างที่ 9 Do-while เพื่อทำการคำนวณผลบวกของเลขตั้งแต่ 1-100 int sum = 0, number = 1; do { sum = sum + number; numbe++; } while (number <= 100) 6
For by Accords (IT SMART CLUB 2006) by Accords 7
9. คำสั่ง for for i = 1 to 10 do for ( ค่าเริ่มต้น ; เงื่อนไขการวนซ้ำ ; การเพิ่มตัวแปรวนซ้ำ ) { คำสั่งที่ต้องทำ; }
9. คำสั่ง for (ต่อ) การเพิ่มค่าหรือลดค่าตัวแปรวนทำซ้ำ เงื่อนไขการวนซ้ำ ค่าเริ่มต้น for ( i = 0; i < 20; i++ ) { number = inputBox.getInteger(); sum += number; }
การเพิ่มหรือลดค่าตัวแปรวนทำซ้ำ ตัวอย่างที่ 8 การเพิ่มหรือลดค่าตัวแปรวนทำซ้ำ for (int i = 0; i < 100 ; i += 5) // i = 0 , 5 , 10, …,100 for (int j = 2; j < 40 ; j *= 2) // j = 2, 4, 8 … for (int k =100; k > 0; k --) // k = 100 , 99 , 98, … , 1 10
Thank You ! ชมรม ITSMRT by Accords (IT SMART CLUB 2006) by Accords 11