Contact: aviboots(AT)netvision.net.il
41,640 questions
54,303 answers
573 users
#include <iostream> int main() { int fahrenheit = 3; float kelvin = (fahrenheit - 32) * 5 / 9.0 + 273.15; std::cout << "Kelvin = " << kelvin << "\n"; } /* run: Kelvin = 257.039 */