var numberList: Array<Int> = [8, 2, 10, 7, 5] //fast enumeration for item in numberList { print(item) } //for loop with half-open operator for index in 0..< ...
確定! 回上一頁