上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 407 下一页
摘要: 001、函数体内的变量名不可以和形参同名 a、 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c #include <stdio.h> int max(int a, int b) { int k = 100; return a > b ? 阅读全文
posted @ 2024-11-07 15:38 小鲨鱼2018 阅读(64) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c #include <stdio.h> int max(int a, int b) // 创建一个名为max的函数 { int k = 100; if(a > b) { return 阅读全文
posted @ 2024-11-07 13:04 小鲨鱼2018 阅读(36) 评论(0) 推荐(0)
摘要: Hifi和ONT 有什么区别 阅读全文
posted @ 2024-11-07 00:56 小鲨鱼2018 阅读(149) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ##测试c程序 #include <stdio.h> int main(void) { int i,j; i = j = 5; // 连续赋值 printf("i = %d\n", 阅读全文
posted @ 2024-11-06 19:28 小鲨鱼2018 阅读(152) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试程序 #include <stdio.h> int main(void) { int var1 = 5; // 初始化一个变量var1 int array1[var1] 阅读全文
posted @ 2024-11-06 19:11 小鲨鱼2018 阅读(133) 评论(0) 推荐(0)
摘要: 001、一维数组 [root@PC1 test1]# ls test.c [root@PC1 test1]# cat test.c #include <stdio.h> int main(void) { int v1[5] = {3, 4, 8}; printf("length of v1 is % 阅读全文
posted @ 2024-11-06 09:23 小鲨鱼2018 阅读(38) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test1]# ls a.txt [root@PC1 test1]# cat a.txt ## 测试数据,对如下文本按照a、b进行排序输出 01 02b 03 04 05 06a 07 08 09 10b 11 12 13 14b 15 16 17 18a 19 20 阅读全文
posted @ 2024-11-06 00:39 小鲨鱼2018 阅读(51) 评论(0) 推荐(0)
摘要: 001、简单测试 [root@PC1 test1]# ls a.txt [root@PC1 test1]# cat a.txt ## 测试数据 01 02 03b 34 05 86 87a 98 09 10 41b 12 13 54 15i 16 17 18 19a 20 [root@PC1 tes 阅读全文
posted @ 2024-11-05 23:54 小鲨鱼2018 阅读(153) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test1]# ls a.txt [root@PC1 test1]# cat a.txt ## 测试数据 fasp.sra.ebi.ac.uk:/vol1/fastq/SRR131/072/SRR13178372/SRR13178372.fastq.gz;fasp.sr 阅读全文
posted @ 2024-11-05 16:04 小鲨鱼2018 阅读(94) 评论(0) 推荐(0)
摘要: 001、 [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c #include <stdio.h> int main(void) { double tensu[2][4][3] = {{{3,4,2},{2,4,4},{2,4,3},{1,5 阅读全文
posted @ 2024-11-05 08:51 小鲨鱼2018 阅读(111) 评论(0) 推荐(0)
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 407 下一页