anonymm0011
Cadet 1st Year
- Registriert
- Apr. 2018
- Beiträge
- 9
Hallo, ich habe diesen Code hier für eine Schul Formel
import java.text.DecimalFormat;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class SkontoRechner {
public static void main (String[] args) throws IOException {
BufferedReader reader = new BufferedReader (new InputStreamReader (System.in));
System.out.println("BwR Skonto Rechner ");
System.out.print("Gib ein um wieviel Brutto es sich Handelt und der Buchungssatz wird dir angezeigt: ");
String StringBrutto = reader.readLine();
float Brutto = Integer.parseInt(StringBrutto); //
float Skonto = 2; //<- Wieviel % Skonto es sind
float Neben = Brutto * Skonto / 100; // Umwandlung
float Fo = Brutto; // Für das Konto Fo
float Ebfe = Brutto * Skonto / 119; // Name wechseln falls EBHW /Umwandlung
double Bkx = Ebfe * 58.31; // Für das Konto Bk
double Ust = Fo - (Ebfe + Bkx);
DecimalFormat Bk = new DecimalFormat(".00");
System.out.println("2800 " + "BK " + Bk.format(Bkx)); // Falls KA das BK in KA wechseln
System.out.println("5100 " + "EBFE " + Bk.format(Ebfe)); //Falls EBHW wechseln
System.out.println("4800 " + "Ust " + Bk.format(Ust) + " an " + "2400 " + "FO " + Fo );
}
}
Im endeffekt will ich jetzt nur, dass dieses Programm beim öffnen ein Fenster öffnet und dann genau so wie die Konsole von Eclipse funktioniert.
Kann mir jemand weiterhelfen wie?
import java.text.DecimalFormat;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class SkontoRechner {
public static void main (String[] args) throws IOException {
BufferedReader reader = new BufferedReader (new InputStreamReader (System.in));
System.out.println("BwR Skonto Rechner ");
System.out.print("Gib ein um wieviel Brutto es sich Handelt und der Buchungssatz wird dir angezeigt: ");
String StringBrutto = reader.readLine();
float Brutto = Integer.parseInt(StringBrutto); //
float Skonto = 2; //<- Wieviel % Skonto es sind
float Neben = Brutto * Skonto / 100; // Umwandlung
float Fo = Brutto; // Für das Konto Fo
float Ebfe = Brutto * Skonto / 119; // Name wechseln falls EBHW /Umwandlung
double Bkx = Ebfe * 58.31; // Für das Konto Bk
double Ust = Fo - (Ebfe + Bkx);
DecimalFormat Bk = new DecimalFormat(".00");
System.out.println("2800 " + "BK " + Bk.format(Bkx)); // Falls KA das BK in KA wechseln
System.out.println("5100 " + "EBFE " + Bk.format(Ebfe)); //Falls EBHW wechseln
System.out.println("4800 " + "Ust " + Bk.format(Ust) + " an " + "2400 " + "FO " + Fo );
}
}
Im endeffekt will ich jetzt nur, dass dieses Programm beim öffnen ein Fenster öffnet und dann genau so wie die Konsole von Eclipse funktioniert.
Kann mir jemand weiterhelfen wie?