diff --git a/README.md b/README.md index 7cbfc37..745ffcb 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,45 @@

-> Web App that convert binary values into decimal. +> A React Web App that convert binary values into decimal. + +### 🏠 [Homepage](https://bin2dec-lucasvbr.vercel.app/) + + + preview picture + + +## Description + +Binary is the number system all digital computers are based on. +Therefore, it's important for developers to understand binary, or base 2, +mathematics. The purpose of Bin2Dec is to provide practice and +understanding of how binary calculations. + +Bin2Dec allows the user to enter strings of up to 8 binary digits, 0's +and 1's, in any sequence and then displays its decimal equivalent. + +This challenge requires that the developer implementing it follow these +constraints: + +- Arrays may not be used to contain the binary digits entered by the user +- Determining the decimal equivalent of a particular binary digit in the + sequence must be calculated using a single mathematical function, for + example the natural logarithm. It's up to you to figure out which function + to use. + +#### User Stories + +- [X] 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 +- [X] User views the results in a single output field containing the decimal ( + base 10) equivalent of the binary number that was entered + +#### Bonus features + +- [X] User can enter a variable number of binary digits + +
From app-ideas/Bin2Dec-App
## Author @@ -19,6 +57,10 @@ Give a ⭐️ if this project helped you! +## 📊 Project Stats + +![Alt](https://repobeats.axiom.co/api/embed/4ab92d78f05d08af5b5995b886eb2ca7803cbc7f.svg "Repobeats analytics image") + ## 📝 License Copyright © 2022 [LucasVbr](https://github.com/LucasVbr).
diff --git a/preview.png b/preview.png new file mode 100644 index 0000000..41f9c37 Binary files /dev/null and b/preview.png differ