diff --git a/src/temperatur.c b/src/temperatur.c index c5de411..7a18e9e 100644 --- a/src/temperatur.c +++ b/src/temperatur.c @@ -1,5 +1,9 @@ #include +float CzuF(float tempC){ + return (tempC * 9/5) + 32; +} + int run_TemperaturRechner(){ float var1; int var3; @@ -12,8 +16,8 @@ int run_TemperaturRechner(){ printf("\nGeben Sie die Temperatur ein: "); scanf("%f", &var1); - printf("\nErgebnis: %.2f\n", (var1 * 9/5) +32); + printf("\nErgebnis: %.2f\n", CzuF(var1)); return 0; -} +} \ No newline at end of file