LeonomoradBIZ

博客园 首页 新随笔 联系 订阅 管理

2020年12月18日 #

摘要: 任务一 #include<stdio.h> const int N=3; int main() { int a[N] = {1,2,3}; int i; printf("通过数组名及下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n",&a[i] 阅读全文
posted @ 2020-12-18 13:03 LeonomoradBIZ 阅读(59) 评论(0) 推荐(0) 编辑