From c4365ac496237dd588a61f2650cc5fc373f7d099 Mon Sep 17 00:00:00 2001 From: Kevin Ludwig Date: Wed, 7 Feb 2024 20:59:27 +0100 Subject: [PATCH] =?UTF-8?q?Fahrenheit=20zu=20Celsius=20funktion=20f=C3=BCr?= =?UTF-8?q?=20berechnung?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/temperatur.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/temperatur.c b/src/temperatur.c index d7926d5..388e32f 100644 --- a/src/temperatur.c +++ b/src/temperatur.c @@ -8,13 +8,17 @@ float CzuK(float tempC){ return tempC + 273.15; } +float FzuC(float tempF){ + return (tempF - 32) * 5/9; +} + int run_TemperaturRechner(){ float var1, var2; int var3; printf("\nTemperaturkonverter (Celsius, Fahrenheit, Kelvin)\nAchten Sie darauf, Kommazahlen mit einem Punkt anzugeben!\n\n"); - printf("Waehlen Sie: \n<1> Celsius zu Fahrenheit\n<2> Celsius zu Kelvin\n"); + printf("Waehlen Sie: \n<1> Celsius zu Fahrenheit\n<2> Celsius zu Kelvin\n<3> Fahrenheit zu Celsius\n"); scanf("%d", &var3); printf("\nGeben Sie die Temperatur ein: "); @@ -28,6 +32,9 @@ int run_TemperaturRechner(){ case 2: var2 = CzuK(var1); break; + case 3: + var2 = FzuC(var1); + break; } printf("\nErgebnis: %.2f\n", var2);