第732天 不同进制数字如何表示? [3+1官网](http://www.h-camel.com/index.html) [我也要出题](http://www.h-camel.com/contribution.html)
Activity
piterzhou commentedon Apr 19, 2021
二进制 :0|1组成
八进制:0开头,0-7组成
十进制:0-9组成
十六进制:0f开头,0-9,a-f组成
wheatup commentedon Apr 20, 2021
0b
开头,0
和1
组成的数字0b1001010
0
或0o
开头(严格模式下仅允许0o
开头),0
-7
组成的数字017
,0o17
0
-9
组成的数字1234
0x
开头,0
-9
、a
-f
组成的数字0x13f2ab