Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 655 Bytes

File metadata and controls

17 lines (9 loc) · 655 Bytes

Note: This section hasn’t been translated into English yet. The original Japanese version is below…

BCD

BCD: 二進化十進数 についての解説

BCDとは?

二進化十進数 とは、コンピュータにおける数値の表現方式の一つで、十進法の1桁を、0から9までを表す二進法の4桁で表したものである。

例えば 8127 という10進数の整数値はBCDで [8, 1, 2, 7] => [%1000, %0001, %0010, %0111] という16bit(2バイト)の値で表される

参考

二進化十進表現