上一页 1 ··· 288 289 290 291 292 293 294 295 296 ··· 403 下一页
摘要: 1、主要原因是硬件限制和效率问题。 阅读全文
posted @ 2021-07-12 23:58 小鲨鱼2018 阅读(276) 评论(0) 推荐(0)
摘要: 1、 c语言中,计算机以不同的前缀表示计算机采用哪种进制的数显示数值。 0表示8进制数的前缀。 0x和0X都表示16进制数的前缀。 比如十进制数16使用8进制数表示是020。(2乘以8的1次方)。 十进制数16使用16进制数表示是0x10。(1乘以16的1次方)。 在程序中,8进制数的转换说明是%# 阅读全文
posted @ 2021-07-12 23:19 小鲨鱼2018 阅读(3138) 评论(0) 推荐(0)
摘要: 字(word)是设计计算机时给定的自然存储单位。 计算机的字长越大,其数据转移越快,允许的内存访问也更多。 计算机在存储、传送或操作时,作为一个单元的一组二进制码称为字,一个字中的二进制位的位数称为字长。 字长在计算机结构和操作的多个方面均有体现。计算机中大多数寄存器的大小是一个字长。计算机处理的典 阅读全文
posted @ 2021-07-12 00:21 小鲨鱼2018 阅读(2607) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-10 20:39 小鲨鱼2018 阅读(1028) 评论(0) 推荐(0)
摘要: tee命令将输出到屏幕上的内容保存至文件中。 1、 [root@centos7 test]# ls [root@centos7 test]# seq 3 1 2 3 [root@centos7 test]# ls [root@centos7 test]# seq 3 | tee a.txt 1 2 阅读全文
posted @ 2021-07-10 14:06 小鲨鱼2018 阅读(246) 评论(0) 推荐(0)
摘要: 若向量组A可由向量组B线性表示,则R(A) <= R(B). 阅读全文
posted @ 2021-07-10 11:04 小鲨鱼2018 阅读(4218) 评论(0) 推荐(0)
摘要: c语言中数据类型基本分类。 通过这些关键字创建的类型,根据计算机的存储方式可分为两大基本类型: 整数类型和浮点数类型 阅读全文
posted @ 2021-07-09 22:12 小鲨鱼2018 阅读(326) 评论(0) 推荐(0)
摘要: 1、逻辑cpu个数(线程数) [root@centos79 test]# cat /proc/cpuinfo | grep "processor" processor : 0 processor : 1 processor : 2 processor : 3 [root@centos79 test] 阅读全文
posted @ 2021-07-09 19:46 小鲨鱼2018 阅读(1040) 评论(0) 推荐(0)
摘要: 1、测试数据 [root@centos79 test]# cat a.txt 3 4 5 d g 3 s g 8 k s g 2 5 d s c w a r t s c E a R t e 4 s 2、删除包含字符k后的一行 [root@centos79 test]# cat a.txt 3 4 5 阅读全文
posted @ 2021-07-09 13:20 小鲨鱼2018 阅读(2182) 评论(0) 推荐(0)
摘要: 1、测试数据 [root@centos79 test]# ls a.txt [root@centos79 test]# cat a.txt 3 4 5 d g 3 s g 8 k s g 2 5 d s c w a r t e 4 s 2、head命令删除最后三行 [root@centos79 te 阅读全文
posted @ 2021-07-09 12:56 小鲨鱼2018 阅读(4208) 评论(0) 推荐(1)
上一页 1 ··· 288 289 290 291 292 293 294 295 296 ··· 403 下一页