输入 n 及 n 个整数,用指针输出 num[i] = 值。
第一行 n,第二行 n 个整数。
n 行 num[i] = 对应值。
5 1 2 3 4 5
num[0] = 1 num[1] = 2 num[2] = 3 num[3] = 4 num[4] = 5
无