数组的读入方式 for (int i = 0; i < T; i++){ scanf("%d", &a[i]); } // 下标法 for (i = 0; i < n;i++) { scanf("%d", a + i); } // 指针法