Create a temperature converter that can convert temperatures between Celsius, Fahrenheit, and Kelvin. The program should take an input temperature and its unit, then convert it to the other two units. Formulas for Temperature Conversion: °C = K - 273.15 °F = °C(9/5) + 32 K = (°F - 32) * 5/9 + 273.15
Enter the Temperature: `user will input the temperature`
Convert to?
1. Celcius
2. Fahrenheit
3. Kelvin
Enter your choice: `user enters it's choice`
Temperature Converted to `Selected Choice`
You can solve this challenge using:
- Python
- C++
- Java