21 September 2020

Learn to Code 1 - เฉลยแบบฝึกหัด To the Edge and Back

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

บทที่ 3 For Loops

แบบฝึกหัด To the Edge and Back


โจทย์ Use a for loop to repeat a rotating pattern.

คำแปล จงใช้ for loop เพื่อทำซ้ำรูปแบบการหมุน



เฉลย To the Edge and Back


for i in 1 ... 4 {

    moveForward()

    moveForward()

    toggleSwitch()

    turnLeft()

    turnLeft()

    moveForward()

    moveForward()

    turnLeft()

}



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

-- ดีบี --