摘要: 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 阅读(3543) 评论(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 阅读(337) 评论(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 阅读(1943) 评论(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) 编辑