摘要: 练习5-1 /* 依次把1、2、3、4、5 赋值给数组的每个元素并显示(使用for语句) */ #include <stdio.h> int main(void) { int i; int v[5]; /* int[5]数组 */ for (i = 0; i <5; i++) /* 为数组元素赋值 阅读全文
posted @ 2019-11-08 12:48 nightswatch-candle 阅读(4536) 评论(1) 推荐(3)