เฉลยแบบฝึกหัด Learn to Code 1
บทที่ 5 Logical Operators
แบบฝึกหัด Checking This OR That
โจทย์ Use the OR operator to adjust your path if either of two conditions is true.
คำแปล จงใช้เครื่องหมาย OR เพื่อปรับเปลี่ยนเส้นทางของคุณถ้าเงื่อนไขอย่างใดอย่างหนึ่งจากสองเงื่อนไขเป็นจริง
เฉลย
for i in 1 ... 12 {
moveForward()
if isBlocked || isBlockedLeft {
turnRight()
}
}
collectGem()
ขอบคุณภาพจาก Swift Playgrounds
-- ดีบี --