上一页 1 ··· 287 288 289 290 291 292 293 294 295 ··· 403 下一页
摘要: 1、测试数据 [root@centos79 test]# cat a.txt e t q t x g a w i k h e 2、cut删除 [root@centos79 test]# cat a.txt e t q t x g a w i k h e [root@centos79 test]# c 阅读全文
posted @ 2021-07-17 01:53 小鲨鱼2018 阅读(5731) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-15 22:10 小鲨鱼2018 阅读(28) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-15 20:15 小鲨鱼2018 阅读(25) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-15 20:01 小鲨鱼2018 阅读(22) 评论(0) 推荐(0)
摘要: 1、c语言中,一个char类型被定义为一个字节所占的位数(8位) char类型用于表示字符(字母或特殊符号,也可以表示较小的整数),但是从技术层面上看,char类型是整数类型,因为char类型是以整数进行存储的。 c语言使用数字-字符编码来处理char类型,也就是说用特定的整数来表示特定的字符。 标 阅读全文
posted @ 2021-07-15 00:50 小鲨鱼2018 阅读(1087) 评论(0) 推荐(0)
摘要: 1、 #include <stdio.h> int main(void) { signed short int num1 = 10; unsigned short int num2= 10; signed int num3 = 10; unsigned int num4 = 10; signed l 阅读全文
posted @ 2021-07-14 23:14 小鲨鱼2018 阅读(89) 评论(0) 推荐(0)
摘要: 1、测试数据sname.csv 1 a 2 b 3 c 4 b 5 d 6 e 7 e 8 f 9 g 10 f test <- read.csv("sname.csv", header = F) test dupid <- test$V2[duplicated(test$V2)] dupid <- 阅读全文
posted @ 2021-07-13 22:27 小鲨鱼2018 阅读(373) 评论(0) 推荐(0)
摘要: 1、以以下程序为例: #include <stdio.h> int main(void) { int i = 2147483647; //int类型可以表示的数值范围为 -2147483648 ~ 2147483647 unsigned int j = 4294967295; //unsigned 阅读全文
posted @ 2021-07-13 00:38 小鲨鱼2018 阅读(548) 评论(0) 推荐(0)
上一页 1 ··· 287 288 289 290 291 292 293 294 295 ··· 403 下一页