Temperature Conversion between Celsius and Fharenheit
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_2KDTOruYBECnnnLDbsjEEKL2nqOpeZXPBC3FhBu7_FeOPdT_1-kI8pNnSVrn9MsCPBuqYCtP5G9NsjUyu3NGGSFsHcu814smITVRtQItmh1fQ5NkUctHIf5x4FI7o1J9lFq7MzLAV4NI/s1600/CodeCogsEqn+%252811%2529.png)
The java code carried out conversion between celsius and Fahrenheit A switch case used to select choice of conversion , C2F (celsius to Fahrenheit) or F2C (Fahrenheit to celsius) and a input temperature value is given to the selected conversion process. Fahrenheit to Celsius Celsius to Fahrenheit This example shows how to calculate use these temperature conversion formula Given Fharenheit F = 76 and find celsius C = ? C = ( 76 -32) x (5/9) = 44 x 0.555 C = 24.442 Given Celsius C = 24 and find Fharenheit F =? F = (9 x C) / 5 + 32 = ...