Книга: Advanced PIC Microcontroller Projects in C
1.11 Converting Decimal Numbers into Hexadecimal
Разделы на этой странице:
1.11 Converting Decimal Numbers into Hexadecimal
To convert a decimal number into hexadecimal, divide the number repeatedly by 16 and take the remainders. The first remainder is the LSD, and the last remainder is the MSD.
Example 1.13
Convert decimal number 23810 into hexadecimal.
Solution 1.13
Dividing the number repeatedly by 16:
238/16 ? 14 Remainder 14 (E) (LSD)
14/16 ? 0 Remainder 14 (E) (MSD)
The hexadecimal number is EE16.
Example 1.14
Convert decimal number 68410 into hexadecimal.
Solution 1.14
Dividing the number repeatedly by 16:
684/16 ? 42 Remainder 12 (C) (LSD)
42/16 ? 2 Remainder 10 (A)
2/16 ? 0 Remainder 2 (MSD)
The hexadecimal number is 2AC16.
Оглавление статьи/книги
- 1.1 Introduction
- 1.2 Microcontroller Systems
- 1.3 Microcontroller Features
- 1.4 Microcontroller Architectures
- 1.5 Number Systems
- 1.6 Converting Binary Numbers into Decimal
- 1.7 Converting Decimal Numbers into Binary
- 1.8 Converting Binary Numbers into Hexadecimal
- 1.9 Converting Hexadecimal Numbers into Binary
- 1.10 Converting Hexadecimal Numbers into Decimal
- 1.11 Converting Decimal Numbers into Hexadecimal
- 1.12 Converting Octal Numbers into Decimal
- 1.13 Converting Decimal Numbers into Octal
- 1.14 Converting Octal Numbers into Binary
- 1.15 Converting Binary Numbers into Octal
- 1.16 Negative Numbers
- 1.17 Adding Binary Numbers
- 1.18 Subtracting Binary Numbers
- 1.19 Multiplication of Binary Numbers
- 1.20 Division of Binary Numbers
- 1.21 Floating Point Numbers
- 1.22 Converting a Floating Point Number into Decimal
- 1.23 BCD Numbers
- 1.24 Summary
- 1.25 Exercises
Похожие страницы
- Hexadecimal, or ‘hex’ to its friends
- Numbers
- 1.6 Converting Binary Numbers into Decimal
- 1.7 Converting Decimal Numbers into Binary
- 1.8 Converting Binary Numbers into Hexadecimal
- 1.9 Converting Hexadecimal Numbers into Binary
- 1.10 Converting Hexadecimal Numbers into Decimal
- 1.12 Converting Octal Numbers into Decimal
- 1.13 Converting Decimal Numbers into Octal
- 1.14 Converting Octal Numbers into Binary
- 1.15 Converting Binary Numbers into Octal
- 1.16 Negative Numbers