เฉลยแบบฝึกหัด Learn to Code 1
บทที่ 4 Conditional Code
แบบฝึกหัด Checking for Switches
โจทย์ Use an if statement to toggle only closed switches.
คำแปล จงใช้คำสั่ง if เพื่อกดสวิตช์ที่ปิดอยู่เท่านั้น
เฉลย Checking for Switches
moveForward()
for i in 1 ... 3 {
moveForward()
if isOnClosedSwitch {
toggleSwitch()
}
}
ขอบคุณภาพจาก Swift Playgrounds
-- ดีบี --