From 9441428acf4024dae2064169a88163a536e20cf3 Mon Sep 17 00:00:00 2001 From: marina <138340846+bt3gl-cryptographer@users.noreply.github.com> Date: Wed, 2 Aug 2023 18:37:49 -0700 Subject: [PATCH] Update README.md --- bit_operations/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bit_operations/README.md b/bit_operations/README.md index 61df217..15b8516 100644 --- a/bit_operations/README.md +++ b/bit_operations/README.md @@ -4,6 +4,7 @@
* 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 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. @@ -15,7 +16,7 @@ ---- -### binary in computers: +### binary in computers
@@ -110,7 +111,7 @@ --- -### examples +### some examples in this dir