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