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
1 ответ
+ 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