Temperature Unit Converter GUI application using Java swing
In this module, I have created a temperature converter which helps in the conversion of various temperature scales.
A temperature converter is used to convert the temperature from one scale to another.
The three most common temperature scales are Celsius, Fahrenheit, and Kelvin.
Now, we'll see how to convert all these scales-
1. From Celsius to Fahrenheit and vice-versa
C = (F - 32)/1.8
F = 1.8C + 32
2. From Celsius to Kelvin and vice-versa
C = K - 273
K = C+273
3. From Fahrenheit to Kelvin and vice-versa
K = (F - 32)*5/9 + 273
F = 9/5(K - 273) + 32
Platform required: IntelliJ IDEA
The output will look like this:

Project Files
/
Loading...
| .. | ||
| This directory is empty. | ||