New idea: Temperature converter

pull/459/head
Bernhard Fritz 4 years ago
parent b47cf8261f
commit 60b56fce0c

@ -0,0 +1,30 @@
# Temperature converter
**Tier:** 1-Beginner
Temperature is measured in degrees (°) of a unit of measurement. Celsius (C) being the most commonly used unit followed by Fahrenheit (F) and Kelvin (K).
Write an app to convert temperature from one unit to another.
## User Stories
- [ ] User can select input unit of choice
- [ ] User can select output unit of choice
- [ ] User can enter number of choice
- [ ] User can see result of conversion
## Bonus features
- [ ] User can select Rankine as unit of choice
- [ ] User can select Delisle as unit of choice
- [ ] User can select Newton as unit of choice
- [ ] User can select Réaumur as unit of choice
- [ ] User can select Rømer as unit of choice
## Useful links and resources
- [Conversion of scales of temperature](https://en.wikipedia.org/wiki/Conversion_of_scales_of_temperature)
## Example projects
- [Temperature conversion in Python](https://www.w3resource.com/python-exercises/python-conditional-exercise-2.php)

@ -73,6 +73,7 @@ required to complete them.
| [Roman to Decimal Converter](./Projects/1-Beginner/Roman-to-Decimal-Converter.md) | Convert Roman to Decimal numbers | 1-Beginner |
| [Slider Design](./Projects/1-Beginner/Slider-Design.md) | Display images using a slider control | 1-Beginner |
| [Stopwatch App](./Projects/1-Beginner/Stopwatch-App.md) | Count time spent on activities | 1-Beginner |
| [Temperature converter](./Projects/1-Beginner/Temperature-Converter.md) | Convert temperature from one unit of measurement to another | 1-Beginner |
| [TrueOrFalse](./Projects/1-Beginner/True-or-False-App.md) | Identify the result of a conditional comparison | 1-Beginner |
| [Vigenere Cipher](./Projects/1-Beginner/Vigenere-Cipher.md) | Encrypt text using the Vigenere Cypher | 1-Beginner |
| [Wind Chill](./Projects/1-Beginner/Windchill-App.md) | Calculate the windchill factor from an actual temperature | 1-Beginner |

Loading…
Cancel
Save