เฉลยแบบฝึกหัด Learn to Code 1
บทที่ 6 While Loops
แบบฝึกหัด Creating Smarter While Loops
โจทย์ Use a while loop and an if statement to open all the switches.
คำแปล จงใช้การวนลูป while และคำสั่ง if เพื่อเปิดสวิตช์ทั้งหมด
เฉลย
while !isBlocked {
moveForward()
if isOnClosedSwitch {
toggleSwitch()
}
}
ขอบคุณภาพจาก Swift Playgrounds
-- ดีบี --