public class Solution { public static void main(String[] args) { System.out.println(celsiusInFahrenheitUmwandeln(41)); } public static double celsiusInFahrenheitUmwandeln(int celsius) { double fahrenheit = (41*9.0/5.0)+32; return fahrenheit; } } Warum erfülle ich nicht die Letzte Ausgabe ??? Obwohl das Ergebnis in der Ausgabe 105.8 ist. Vielleicht hat jemand eine Idee Und kann mir jemand return erklären?? Wert zurück geben was soll das ?? Danke im voruas