Dada una temperatura n en escala Fahrenheit , conviértala en escala Celsius . Ejemplos:
Input: 32 Output: 0 Input: -40 Output: -40
Fórmula para convertir escala Fahrenheit a escala Celsius
T(°C) = (T(°F) - 32) × 5/9
C
// C Program to convert // Fahrenheit to Celsuis #include <stdio.h> // Function to convert Degree // Fahrenheit to Degree Celsuis float fahrenheit_to_celsius(float f) { return ((f - 32.0) * 5.0 / 9.0); } // Driver code int main() { float f = 40; // Passing parameter to function printf("Temperature in Degree Celsius : %0.2f", fahrenheit_to_celsius(f)); return 0; }
Producción:
Temperature in Degree Celsius : 4.44
Complejidad de tiempo: O(1)
Espacio Auxiliar: O(1)
Consulte el artículo completo sobre el programa para la conversión de Fahrenheit a Celsius para obtener más detalles.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA