当前位置:网站首页>How to determine how many bases a number is?
How to determine how many bases a number is?
2022-08-10 23:41:00 【There are gods in the mountains】
Give a point a number and determine what base it is??
1, binary: only 0 and 1 in it
2, octal: each single number is between 0-7 (inclusive). Such as 175,023,312, etc.
3, hexadecimal
Its rule is "every hexadecimal one".
The base of hexadecimal number is 16,
The numbers used are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F.
A-F represent decimal numbers 10-15 respectively.
The technical rule of hexadecimal numbers is "every hexadecimal one", and the weight of each bit is identified by the N power of 16.
The representation of hexadecimal numbers starts with 0x.
Example: 0xAF=175
Usually, for the representation of hexadecimal numbers, 16 or H can be marked in the lower right corner of the number, but in C language, the number 0 and the letter X are added in front of the number.0X to indicate.For example, 12AF is represented as 0X12AF in C language.
4. Decimal: each single number is between 0-9 (inclusive).
边栏推荐
猜你喜欢
随机推荐
Talking about jsfuck coding
推进牛仔服装的高质量发展
promise详解
HGAME 2022 Week4 writeup
高性能MySQL核心整理强势来袭
编程语言为什么有变量类型这个概念?
逮到一个阿里 10 年老 测试开发,聊过之后收益良多...
Pengcheng Cup 2022 web/misc writeup
性能不够,机器来凑;jvm调优实战操作详解
iNFTnews | In the Web3 era, users will have data autonomy
CSDN21天学习挑战赛之折半插入排序
Geogebra 教程之 02 Geogebra初学者的 8 个基本要素
北京党建展馆vr全景制作优点有哪些
开启新征程——枫叶先生第一篇博客
u盘数据不小心删除怎么恢复,u盘数据删除如何恢复
线程池如何监控,才能帮助开发者快速定位线上错误?
XSLeaks side channel attack (unfinished)
GoldenGate中使用 exp/imp 进行初始化
DASCTF X SU 2022 writeup
基于SSM实现手机销售商城系统









