19 September 2020

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

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

บทที่ 3 For Loops

แบบฝึกหัด Using Loops


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

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



เฉลย Using Loops

for i in 1...5 {

  moveForward()

  moveForward()

  collectGem()

  moveForward()

}


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

-- ดีบี --