เฉลยแบบฝึกหัด Learn to Code 1
บทที่ 4 Conditional Code
แบบฝึกหัด Looping Conditional Code
โจทย์ Use an if statement inside a loop to loggle a switch or collect a gem.
คำแปล จงใช้คำสั่ง if ข้างในการวนลูปเพื่อกดสวิตช์หรือเก็บอัญมณี
เฉลย Looping Conditional Code
for i in 1...12 {
moveForward()
if isOnGem {
collectGem()
} else if isOnClosedSwitch {
toggleSwitch()
}
}
ขอบคุณภาพจาก Swift Playgrounds
-- ดีบี --