上一页 1 ··· 246 247 248 249 250 251 252 253 254 ··· 367 下一页
摘要: linux系统中scp命令实现服务器之间数据的传输 1、从本地服务器传输至另一台服务器 测试服务器连通性: [root@centos79 test]# ifconfig | head -n 3 ## 查看本机服务器ip ens32: flags=4163<UP,BROADCAST,RUNNING,M 阅读全文
posted @ 2021-07-31 13:18 小鲨鱼2018 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 1、下载进NCBI官网 2、 3、 4、根据系统选择版本,下载即可 5、查看自己系统 [root@PC3 software]# hostnamectl Static hostname: PC3 Icon name: computer Chassis: n/a Machine ID: b7fae4ce 阅读全文
posted @ 2021-07-31 12:08 小鲨鱼2018 阅读(2419) 评论(0) 推荐(1) 编辑
摘要: sra数据的下载 1、打开ncbi官网,(测试的数据连接: https://genome.cshlp.org/content/24/8/1308.long) 2、 3、 4、依次点击 5、选择下载工具下载即可 阅读全文
posted @ 2021-07-31 11:40 小鲨鱼2018 阅读(510) 评论(0) 推荐(0) 编辑
摘要: 1、测试数据 [root@centos7 test]# cat a.txt 1 2 3 4 5 6 7 8 9 2、 数字的作用相当于print? [root@centos7 test]# cat a.txt 1 2 3 4 5 6 7 8 9 [root@centos7 test]# awk '{ 阅读全文
posted @ 2021-07-29 12:41 小鲨鱼2018 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 1、c语言中如何创建、存储、输出字符串、输出字符串的大小、字符串的长度 #include <stdio.h> #include <string.h> int main(void) { char name[128]; //使用数组存储字符串 int size, len; printf("please 阅读全文
posted @ 2021-07-29 00:26 小鲨鱼2018 阅读(977) 评论(0) 推荐(0) 编辑
摘要: 1、查看系统 [root@centos8pc2 network-scripts]# hostnamectl Static hostname: centos8pc2 Icon name: computer-vm Chassis: vm Machine ID: f021cde3a91b4a2688dbe 阅读全文
posted @ 2021-07-28 19:52 小鲨鱼2018 阅读(2449) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> int main(void) { int ch; printf("please input an number for char type: "); scanf("%d", &ch); printf("%d is equivalent to %c.\n", ch 阅读全文
posted @ 2021-07-27 23:29 小鲨鱼2018 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 1、 #include <stdio.h> #include <float.h> #include <limits.h> int main(void) { int big_int = 2147483647; float big_float = 3.4E38; float small_float = 阅读全文
posted @ 2021-07-27 23:26 小鲨鱼2018 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 1、c语言中如何处理整数值的上溢。 #include <stdio.h> int main(void) { int i; int j = 1; for(i = 1; i <= sizeof(int) * 8 - 1; i++) { j *= 2; } printf("j = %d.\n", j - 阅读全文
posted @ 2021-07-27 22:36 小鲨鱼2018 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 由于c语言中数据类型实际所占存储位数和精度和具体平台相关,c语言的规范并没有强制和详细的规定, 因此c语言程序在移植过程中可能会出现不同平台数据类型不兼容 的状况。 为了解决这个问题,c语言在可移植类型stdint.h和inttype.h中规定了精确宽度整数类型,以确保c语言的类型在各系统内功能相同 阅读全文
posted @ 2021-07-26 23:30 小鲨鱼2018 阅读(297) 评论(0) 推荐(0) 编辑
上一页 1 ··· 246 247 248 249 250 251 252 253 254 ··· 367 下一页