05 2021 档案

摘要:1.一维数组 代码如下: 1 #include <stdio.h> 2 const int N=3; 3 int main() { 4 int a[N] = {1, 2, 3}; 5 int i; 6 printf("通过数组名和下标直接访问数组元素:\n"); 7 for(i=0; i<N; i+ 阅读全文
posted @ 2021-05-21 23:20 namelessbird 阅读(80) 评论(1) 推荐(0) 编辑