Zurück zur Auswahl

 

BCD

Binary Coded Decimal

Darstellungsform von Zahlen, bei denen jede Zahl durch vier Bits dargestellt wird.

Beim Auslesen des Codes von zwei oder mehrstelligen Zahlen wird rechts begonnen.

 

zum Beispiel:

 

         Dezimalzahl          BCD           BCD           BCD

                                   3.Stelle       2.Stelle       1.Stelle

                  0                0000           0000           0000

                 1                                0000           0000           0001 

                  2                                0000           0000           0010

                  3                0000           0000           0011

                  4                0000           0000           0100

                  5                0000           0000           0101

                  6                0000           0000           0110

                  7                0000           0000           0111

                  8                0000           0000           1000

                  9                0000           0000           1001

                  10              0000           0001           0000

                  20              0000           0010           0000

                  30              0000           0011           0000

                  40              0000           0100           0000

       50              0000           0101           0000

       60              0000           0110           0000

       70              0000           0111           0000

       80              0000           1000           0000

       90              0000           1001           0000

     100              0001           0000           0000

     200              0010           0000           0000

     256             0010           0101           0110