-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
[feat/fix/docs]: Improved on conversion code , length variable , asserts added #840
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 30 commits
67eeefe
0008c67
7185941
6e5e561
905b80c
e771021
157f6d1
bbb6024
82e1f41
1e4c396
166dc0b
57bcffa
129f4b0
8526600
61bed00
4d91c9d
8defb93
6397733
45e4eff
6553640
09df4a4
63cf38c
e078df2
0b199fb
f66cd1b
fd82d9e
ebf83bb
63a9a16
a2ca660
81ab47c
0f96de5
254cabf
8c1b548
8632490
8fa92c5
4ab5a25
da73878
71c17ee
c3433f7
53e719b
af4b346
aa8e55b
0d61a4a
82fb3ae
9612325
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,24 +1,103 @@ | ||||||
| /** | ||||||
| * @file | ||||||
| * @brief Converts a binary number to a decimal one. | ||||||
lazy-dude marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||
| * @details | ||||||
| * A binary number is an input, it is checked to be binary | ||||||
| * then, the number is converted to a decimal number. | ||||||
lazy-dude marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||
| * @author [Kyler Smith](https://github.com/KylerSmith) | ||||||
| * @author [lazy-dude](https://github.com/lazy-dude) | ||||||
| */ | ||||||
|
|
||||||
| #include <assert.h> /// for assert | ||||||
| #include <stdbool.h> /// for bool | ||||||
| #include <stdint.h> /// for uintmax_t | ||||||
| #include <stdio.h> /// for IO operations | ||||||
|
|
||||||
| /** | ||||||
| * Modified 07/12/2017, Kyler Smith | ||||||
| * | ||||||
| * @brief checks whether the number is binary | ||||||
| * @param num to be checked if it has binary representation | ||||||
lazy-dude marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||
| * @returns true if the number IS binary | ||||||
| * @returns false if the number is NOT binary | ||||||
lazy-dude marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||||||
| */ | ||||||
| bool is_binary(uintmax_t num) | ||||||
| { | ||||||
| unsigned remainder = 0; | ||||||
|
|
||||||
| #include <stdio.h> | ||||||
| while (num > 0) { | ||||||
| remainder = num % 10; | ||||||
| if (remainder == 0 || remainder == 1) { | ||||||
| num /= 10; | ||||||
| continue; | ||||||
| } else | ||||||
| return false; | ||||||
| } | ||||||
| return true; | ||||||
|
Comment on lines
+27
to
+35
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add a bit of documentation here of what this code does. |
||||||
| } | ||||||
|
|
||||||
| int main() | ||||||
| /** | ||||||
| * @brief finds the length of an `uintmax_t` number | ||||||
| * @param num whose length to be computed | ||||||
| * @return the length of the number | ||||||
| */ | ||||||
| uint16_t num_len(uintmax_t num) | ||||||
| { | ||||||
| uint16_t len = 0; | ||||||
| for (len = 0; num > 0; len++) { | ||||||
| num /= 10; | ||||||
| } | ||||||
| return len; | ||||||
| } | ||||||
|
|
||||||
| /** | ||||||
| * @brief binary_decimal function does the actual job of conversion | ||||||
|
||||||
| * @brief binary_decimal function does the actual job of conversion | |
| * @brief The `binary_decimal` function does the actual job of conversion |
lazy-dude marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * @param number binary to be converted | |
| * @param number the binary to be converted |
lazy-dude marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * @return decimal_number decimal representation of binary number | |
| * @return decimal_number decimal representation of a binary number |
lazy-dude marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong indentation. Please fix it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's see if it works.
Uh oh!
There was an error while loading. Please reload this page.