Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 676 Bytes

File metadata and controls

26 lines (22 loc) · 676 Bytes

🚀 Temperature Converter

📝 Task Description

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

📤 Sample Output

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`

💻 Languages Supported

You can solve this challenge using:

  • Python
  • C++
  • Java