摘要: 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 阅读(347) 评论(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 阅读(475) 评论(0) 推荐(0) 编辑