Hallo Leute bin neu hier sehr schöne Seite. Nun zu meinem Problem wir programmieren in der FH mit Eclipse nun müssen wir ein programm erweitern allerdings habe ich da ein kleines problem. der Befehl celsius = Eingabe.readFloat(""); wird mir als fehler angezeigt da steht Eingabe can not be resolved. Ich hoffe ihr könnt mir da weiter helfen.
Wir Programmieren mit einem Programm namens Eclipse ich hoffe das ist ein bekanntes Programm.
Hier das gesamte Programm.
public class Praktikum2_Teil4 {
public static void main(String[] args) {
float celsius;
float fahrenheit;
System.out.print("Geben Sie eine Temperatur in Grad Celsius ein : ");
celsius = Eingabe.readFloat("");
fahrenheit = celsius * 1.8f + 32.0f;
System.out.print(celsius + " Grad Celsius = ");
System.out.print(fahrenheit + " Grad Fahrenheit\n");
}
}
Wir Programmieren mit einem Programm namens Eclipse ich hoffe das ist ein bekanntes Programm.
Hier das gesamte Programm.
public class Praktikum2_Teil4 {
public static void main(String[] args) {
float celsius;
float fahrenheit;
System.out.print("Geben Sie eine Temperatur in Grad Celsius ein : ");
celsius = Eingabe.readFloat("");
fahrenheit = celsius * 1.8f + 32.0f;
System.out.print(celsius + " Grad Celsius = ");
System.out.print(fahrenheit + " Grad Fahrenheit\n");
}
}
Zuletzt bearbeitet: