上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 407 下一页
摘要: 001、AI打开PDF文件 002、左侧选择矩形工具 003、选择想要剪切的区域 004、 回到一般选择图标 005、ctrl + a选中两个图层 006、右键选择简历剪切蒙版 007、 剪切完成。 。 阅读全文
posted @ 2025-01-10 17:33 小鲨鱼2018 阅读(857) 评论(0) 推荐(0)
摘要: #将filename设置成NULL #将画出来的图先保存到venn.plot中 venn.plot <- venn.diagram( x = list ( A = 1:10, B = 6:25 ), cat.col=c("red","blue"), fill = c("red","blue"), f 阅读全文
posted @ 2025-01-03 23:49 小鲨鱼2018 阅读(55) 评论(0) 推荐(0)
摘要: 001、 c语言中显示无符号整型数据在计算机存储中二进制位的具体数值 [root@PC1 test2]# cat test.c #include <stdio.h> int bits_count(unsigned x) // 定义函数, 输出二进制位上为1的位数 { int bits; bits = 阅读全文
posted @ 2025-01-03 11:41 小鲨鱼2018 阅读(20) 评论(0) 推荐(0)
摘要: 001、野生群体+驯化群体 002、家养群体 003、野生群体 。 阅读全文
posted @ 2025-01-01 01:52 小鲨鱼2018 阅读(21) 评论(0) 推荐(0)
摘要: c语言中输出各种数据类型的长度: [root@PC1 test]# ls test.c [root@PC1 test]# cat test.c ## 测试程序 #include <stdio.h> int main(void) { printf("size of char: %u\n", (unsi 阅读全文
posted @ 2024-12-23 13:04 小鲨鱼2018 阅读(36) 评论(0) 推荐(0)
摘要: 001、 C语言中的1U表示的是无符号整数1,即unsigned int型的 1. 阅读全文
posted @ 2024-12-21 09:51 小鲨鱼2018 阅读(117) 评论(0) 推荐(0)
摘要: 001、报错如下: configure: error: curses development files not found 002、rocky9系统 [root@PC1 samtools-1.21]# cat /etc/redhat-release Rocky Linux release 9.4 阅读全文
posted @ 2024-12-20 11:01 小鲨鱼2018 阅读(63) 评论(0) 推荐(0)
摘要: 001、 位(bit)是计算机内部数据存储的最小单位,即0和1; 而字节(byte)是数据处理的基本单位。 1个字节由8个二进制位(bit)组成,可以存储一个字符或表示0到255之间的数字, 2的8次方。 阅读全文
posted @ 2024-12-15 15:04 小鲨鱼2018 阅读(88) 评论(0) 推荐(0)
摘要: 001、 [b20223040323@admin2 test]$ ls test.c [b20223040323@admin2 test]$ cat test.c #include <stdio.h> int main(void) { int i,j,k; ## 三个变量 负数、正数和0 i = - 阅读全文
posted @ 2024-12-15 13:22 小鲨鱼2018 阅读(30) 评论(0) 推荐(0)
摘要: 001、signed既可以表示整数也可以表示负数, 若不指定默认为signed; unsigned表示只可以表示0和正数。 signed 表示有符号的; unsigned表示无符号的; C语言中各种数据类型可以存储的值的范围可以通过一下方式进行输出: [root@localhost test]# l 阅读全文
posted @ 2024-12-15 00:27 小鲨鱼2018 阅读(217) 评论(0) 推荐(0)
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 407 下一页