1.数组的本质 2.创建数组 (1)创建数组就是在计算机内存中开辟一块连续空间,用下标来代替每个元素 (2)如何创建呢? a.int aa[100]; b.int aa[100] = {}; c.int aa[100] = {1,3}; d.int aa[3] = {1,3,2}