上一页 1 ··· 361 362 363 364 365 366 367 368 369 ··· 407 下一页
摘要: 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 阅读(487) 评论(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 阅读(469) 评论(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 阅读(160) 评论(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 阅读(3713) 评论(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 阅读(372) 评论(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 阅读(2001) 评论(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 阅读(178) 评论(0) 推荐(0)
摘要: 1、查看系统 [root@centos8 home]# cat /etc/redhat-release CentOS Linux release 8.3.2011 [root@centos8 home]# hostnamectl Static hostname: centos8 Icon name: 阅读全文
posted @ 2021-02-02 23:44 小鲨鱼2018 阅读(873) 评论(0) 推荐(0)
摘要: 1、R-4.0.3安装过程中隐患 2、查看当前系统 [root@centos8 test]# cat /etc/redhat-release CentOS Linux release 8.3.2011 [root@centos8 test]# hostnamectl Static hostname: 阅读全文
posted @ 2021-02-02 17:38 小鲨鱼2018 阅读(2929) 评论(0) 推荐(0)
摘要: 1、当前路径文件 > dir() [1] "a.txt" 2、加载包,绘图测试 > library(Cairo) > Cairo.capabilities() png jpeg tiff pdf svg ps x11 win raster TRUE FALSE FALSE TRUE TRUE TRU 阅读全文
posted @ 2021-02-02 13:19 小鲨鱼2018 阅读(757) 评论(0) 推荐(0)
上一页 1 ··· 361 362 363 364 365 366 367 368 369 ··· 407 下一页