เฉลยแบบฝึกหัด Learn to Code 1
บทที่ 6 While Loops
แบบฝึกหัด Choosing the Correct Tool
โจทย์ Choose the best loop to collect all the gems.
คำแปล จงเลือกวิธีการวนลูปที่ดีที่สุดเพื่อเก็บอัญมณีทั้งหมด
เฉลย
func turnAndCollectGem() {
moveForward()
turnLeft()
moveForward()
collectGem()
turnRight()
}
for i in 1...6 {
turnAndCollectGem()
}
ขอบคุณภาพจาก Swift Playgrounds
-- ดีบี --