diff --git a/Projects/Roman2Dec-App.md b/Projects/Roman2Dec-App.md new file mode 100644 index 00000000..8350c611 --- /dev/null +++ b/Projects/Roman2Dec-App.md @@ -0,0 +1,49 @@ +# Roman2Dec + +**Tier:** 1-Intermediate + +The purpose of this app is to allow the user put in practice both, algorithmic and Web Development knowledge by creating a Roman to Decimal numbers converter app. + +The numeric system represented by Roman numerals originated in ancient Rome and remained the +usual way of writing numbers throughout Europe well into the Late Middle Ages. +Roman numerals, as used today, employ seven symbols, each with a fixed integer value. + +See the below table with *Symbol - Value* + + I - 1 + V - 5 + X - 10 + L - 50 + C - 100 + D - 500 + M - 1000 + +This challenge requires that the developer implementing it follow these +constraints: + +- Maximum decimal number that can be converted to Roman Numerals is within the range of 1 to 3999 + +## User Stories + +- [ ] User should enter one Roman number in an input field +- [ ] The calculation must be done as the user type +- [ ] User views the results in a single output field containing the + decimal (base 10) equivalent of the the roman number that was entered. + +## Bonus features + +- [ ] As a user I would like to be able to convert from decimal to Roman + +## Trello Board + +pending... + +## Useful links and resources + +[An explanation of Roman Numbers](https://en.wikipedia.org/wiki/Roman_numerals) + +## Example projects + +Try not to view this until you've developed your own solution: + +- [Roman Number Converter](https://www.calculatorsoup.com/calculators/conversions/roman-numeral-converter.php)