2020年12月16日
摘要: 实验任务1 1 #include <stdio.h> 2 3 const int N=3; 4 int main() { 5 int a[N] = {1, 2, 3}; 6 int i; 7 8 printf("通过数组名及下标直接访问数组元素:\n"); 9 for(i=0; i<N; i++) 阅读全文
posted @ 2020-12-16 22:04 黑卡卡卡蒂 阅读(127) 评论(1) 推荐(0)