摘要: 使用递归反向输出数组的内容 1 #include <stdio.h> 2 3 int list[6] = {1,2,3,4,5,6}; 4 5 void invert_array(int j) 6 { 7 if(j < 6) 8 { 9 invert_array(j + 1); 10 printf( 阅读全文
posted @ 2020-12-27 21:22 互联星空 阅读(405) 评论(0) 推荐(0) 编辑