数组和集合 / 数组

let count = 15
var arInt = [Int](repeating: 0, count: count)
arInt[0] = 1

print(arInt)