上一页 1 ··· 328 329 330 331 332 333 334 335 336 ··· 375 下一页
摘要: 1、 #include <stdio.h> int main(void) { int a[2][4][3] ={{{20,10,12},{30,20,10},{20,10,50},{20,10,30}},{{30,10,20},{40,30,10},{10,20,30},{50,10,20}}}; 阅读全文
posted @ 2021-02-06 17:20 小鲨鱼2018 阅读(455) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> int main(void) { int i, j; int a[6][2]; puts("please input the elements of the 6 * 2 matrix."); for (i = 0; i < 6; i++) { for (j 阅读全文
posted @ 2021-02-06 14:14 小鲨鱼2018 阅读(2388) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> int main(void) { int a[4][3] = {{2,5,4},{1,2,4},{5,3,2},{4,2,6}}; int b[3][4] = {{2,1,6,2},{3,2,4,1},{5,2,1,2}}; int i, j, k; in 阅读全文
posted @ 2021-02-05 23:49 小鲨鱼2018 阅读(2180) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> int main(void) { int a[4][3] = {{50,60,40},{80,70,60},{60,70,70},{90,80,70}}; int b[4][3] = {{40,60,80},{20,70,90},{60,80,90},{5 阅读全文
posted @ 2021-02-05 14:10 小鲨鱼2018 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> # define NUMBER 80 int main(void) { int a[NUMBER]; int number; puts("please input the number of the student."); do { printf("num 阅读全文
posted @ 2021-02-04 18:48 小鲨鱼2018 阅读(436) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> #define NUMBER 5 int main(void) { int a[NUMBER]; int i; puts("please input several numbers."); for (i = 0; i < NUMBER; i++) { pr 阅读全文
posted @ 2021-02-04 00:04 小鲨鱼2018 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> #define NUMBER 5 int main(void) { int i; int a[NUMBER]; puts("please input the score of the students."); for (i = 0; i < NUMBER; 阅读全文
posted @ 2021-02-03 23:11 小鲨鱼2018 阅读(3532) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> #define XXX 3 int main(void) { int i; int a[XXX]; int sum = 0; puts("please input the scores of the students."); for (i = 0; i < 阅读全文
posted @ 2021-02-03 22:31 小鲨鱼2018 阅读(336) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> int main(void) { int a[8]; int i; for (i = 0; i < 8; i++) { printf("a[%d] = ",i); scanf("%d", &a[i]); } puts(" \n \n "); int tem 阅读全文
posted @ 2021-02-03 21:17 小鲨鱼2018 阅读(1935) 评论(0) 推荐(0) 编辑
摘要: 1、查看系统 [root@centos7 home]# cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) [root@centos7 home]# hostnamectl Static hostname: centos7 Ico 阅读全文
posted @ 2021-02-03 00:51 小鲨鱼2018 阅读(154) 评论(0) 推荐(0) 编辑
上一页 1 ··· 328 329 330 331 332 333 334 335 336 ··· 375 下一页