Loops
จีราวัฒน์ ศิรยศลักษณ์ 650710534
LOOPS
ลูปส่วนใหญ่แบ่งออกเป็น 2 ประเภท
Entry Controlled Loops (ลูปที่ตรวจสอบเงื่อนไขก่อนเข้า)
// for loop
for (int i = 1; i < 5; i++) {
Console.WriteLine("Apple " + i);
}
/* output
Apple 1
Apple 2
Apple 3
Apple 4
*/

Exit Controlled Loops (ลูปที่ตรวจสอบเงื่อนไขหลังออก)

Infinite loop
Nested loops
Compare with other language C / JAVA / PYTHON
For loops
While loops
do-while loops
Summary of Comparing
video presentation
Slide presentation
Source แหล่งที่มา
Last updated
