Update README.md

This commit is contained in:
marina 2023-08-02 18:37:49 -07:00 committed by GitHub
parent 5ea9c0bbbf
commit 9441428acf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,7 @@
<br> <br>
* the base is a carry counting system with fixed digital symbols and rules. * the base is a carry counting system with fixed digital symbols and rules.
* to convert a decimal number to a base-X non-decimal, you need to convert the integer part and the fractional part separately. * to convert a decimal number to a base-X non-decimal, you need to convert the integer part and the fractional part separately.
* to convert the integer part, integer divide it by X until it reaches 0, and record the remainder each time. * to convert the integer part, integer divide it by X until it reaches 0, and record the remainder each time.
* traversing the remainder in reverse order will give the representation in the base-X system. * traversing the remainder in reverse order will give the representation in the base-X system.
@ -15,7 +16,7 @@
---- ----
### binary in computers: ### binary in computers
<br> <br>
@ -110,7 +111,7 @@
--- ---
### examples ### some examples in this dir
<br> <br>