摘要: task1_1.c 1 #include <stdio.h> 2 #define N 4 3 int main() 4 { 5 int x[N] = { 1, 9, 8, 4 }; 6 int i; 7 int* p; 8 // 方式1:通过数组名和下标遍历输出数组元素 9 for (i = 0; 阅读全文
posted @ 2023-05-04 22:05 shaobky 阅读(13) 评论(0) 推荐(0) 编辑