20 September 2020

Learn to Code 1 - เฉลยแบบฝึกหัด Looping All the Sides

เฉลยแบบฝึกหัด Learn to Code 1

บทที่ 3 For Loops

แบบฝึกหัด Looping All the Sides


โจทย์ Use a for loop to repeat a sequence of commands.

คำแปล จงใช้ for loop เพื่อทำคำสั่งซ้ำตามลำดับ



เฉลย Looping All the Sides


for i in 1 ... 4 {

    moveForward()

    collectGem()

    moveForward()

    moveForward()

    moveForward()

    turnRight()

}



ขอบคุณภาพจาก Swift Playgrounds

-- ดีบี --