# 一、进制 我们常用的算术进制是十进制的,所以类推一下就可以得到其他进制的计数规律。值得注意的是在十六进制中我们使用 ABCDEF 来代表 10、11、12、13、14、15,以便于我们使用。 (计数规律较为简单不再赘述) # 二、逻辑运算 # 1、“与”“或”‘异或’ 首先要明白布尔运算的运算法则,即 “与”“或”‘异或’三种基本运算。 与:同为 1 得 1 或:其中有 1 个为 1 得 1 异或:一个 1 一个 0 得 1 # 2、原码反码补码 1)原码:二进制中每个数的二进制码如:1:0001、-1:1001 2)反码:首位 1 不动,其余取反如:-1:1110 3)补码:反码加 1...

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$...