added Trello Board to Bin2Dec

pull/12/head
Florin Pop 7 years ago
parent 85814bd5e9
commit 069299eec6

@ -1,8 +1,8 @@
# Bin2Dec # Bin2Dec
Binary is the number system all digital computers are based on. Binary is the number system all digital computers are based on.
Therefore it's important for developers to understand binary, or base 2, Therefore it's important for developers to understand binary, or base 2,
mathematics. The purpose of Bin2Dec is to provide practice and mathematics. The purpose of Bin2Dec is to provide practice and
understanding of how binary calculations. understanding of how binary calculations.
Bin2Dec allows the user to enter strings of up to 8 binary digits, 0's Bin2Dec allows the user to enter strings of up to 8 binary digits, 0's
@ -11,23 +11,27 @@ and 1's, in any sequence and then displays its decimal equivalent.
This challenge requires that the developer implementing it follow these This challenge requires that the developer implementing it follow these
constraints: constraints:
- Arrays may not be used contain the binary digits entered by the user - Arrays may not be used contain the binary digits entered by the user
- Determining the decimal equivalent of a particular binary digit in the - Determining the decimal equivalent of a particular binary digit in the
sequence must be calculated using a single mathematical function, for sequence must be calculated using a single mathematical function, for
example the natural logarithm. It's up to you to figure out which function example the natural logarithm. It's up to you to figure out which function
to use. to use.
## User Stories ## User Stories
- [ ] User can enter up to 8 binary digits in one input field - [ ] User can enter up to 8 binary digits in one input field
- [ ] User must be notified if anything other than a 0 or 1 was entered. - [ ] User must be notified if anything other than a 0 or 1 was entered
- [ ] User views the results in a single output field containing the - [ ] User views the results in a single output field containing the
decimal (base 10) equivalent of the the binary number that was entered decimal (base 10) equivalent of the the binary number that was entered
## Bonus features ## Bonus features
- [ ] User can enter a variable number of binary digits - [ ] User can enter a variable number of binary digits
## Trello Board
You can track your progress by cloning this [Trello Board](https://trello.com/b/4jB05S2L/bin2dec)
## Useful links and resources ## Useful links and resources
[Binary number system](https://en.wikipedia.org/wiki/Binary_number) [Binary number system](https://en.wikipedia.org/wiki/Binary_number)
@ -35,4 +39,5 @@ decimal (base 10) equivalent of the the binary number that was entered
## Example projects ## Example projects
Try not to view this until you've developed your own solution: Try not to view this until you've developed your own solution:
- [Binary to decimal conversion program for beginners](https://www.youtube.com/watch?v=YMIALQE26KQ)
- [Binary to decimal conversion program for beginners](https://www.youtube.com/watch?v=YMIALQE26KQ)

Loading…
Cancel
Save