14 September 2020

Learn to Code 1 - เฉลยแบบฝึกหัด Collect, Toggle, Repeat

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

บทที่ 2 Functions

แบบฝึกหัด Collect, Toggle, Repeat


โจทย์ Define a function for a repeating pattern.

คำแปล กำหนดฟังก์ชันสำหรับรูปแบบการทำซ้ำ



เฉลย Collect, Toggle, Repeat

func switchGem() {

    moveForward()

    collectGem()

    moveForward()

    toggleSwitch()

    moveForward()

}


switchGem()

turnLeft()

switchGem()

moveForward()

turnLeft()

switchGem()

turnLeft()

switchGem()



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

-- ดีบี --