Write a program that will convert temperature from Celsius(C) to Fahrenheit(F) or kelvin(K),from F to K or C, from K to F or C | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Write a program that will convert temperature from Celsius(C) to Fahrenheit(F) or kelvin(K),from F to K or C, from K to F or C

it will be optional on what you want to convert to

5th Dec 2016, 11:15 AM
ABDULJABBAR
ABDULJABBAR - avatar
1 Answer
+ 7
use this equations and always try to make projects yourself. You can ask us the algorithms. I know a lot of algorithms. C = (F - 32) * 5 / 9 C = K - 273 F = (C * 9 / 5) + 32 F = ((K - 273) * 9 / 5) + 32 K = C + 273 K = ((F - 32) * 5 / 9) + 273
5th Dec 2016, 11:51 AM
Cyrus Ornob Corraya
Cyrus Ornob Corraya - avatar