เฉลยแบบฝึกหัด Learn to Code 1
บทที่ 6 While Loops
แบบฝึกหัด Four by Four
โจทย์ Choose the best loops and toggle the switches.
คำแปล จงเลือกวิธีการวนลูปที่ดีที่สุดและกดสวิตช์
เฉลย
while !isBlocked {
moveForward()
if isOnOpenSwitch {
turnRight()
} else if isOnClosedSwitch {
toggleSwitch()
turnRight()
}
}
ขอบคุณภาพจาก Swift Playgrounds
-- ดีบี --