54 lines
1.8 KiB
Java
54 lines
1.8 KiB
Java
import java.util.Scanner;
|
|
|
|
public class PCHaendler {
|
|
|
|
public static String liesString(String text) {
|
|
Scanner myScanner = new Scanner(System.in);
|
|
System.out.println(text);
|
|
return myScanner.next();
|
|
}
|
|
|
|
public static int liesInt(String text) {
|
|
Scanner myScanner = new Scanner(System.in);
|
|
System.out.println(text);
|
|
return myScanner.nextInt();
|
|
}
|
|
|
|
public static double liesDouble(String text) {
|
|
Scanner myScanner = new Scanner(System.in);
|
|
System.out.println(text);
|
|
return myScanner.nextDouble();
|
|
}
|
|
|
|
public static double berechneGesamtnettopreis(int anzahl, double nettopreis) {
|
|
return anzahl * nettopreis;
|
|
}
|
|
|
|
public static double berechneGesamtnettopreis(double nettogesamtpreis, double mwst) {
|
|
return nettogesamtpreis * (1 + mwst / 100);
|
|
}
|
|
|
|
public static void rechungausgeben(String artikel, int anzahl, double nettogesamtpreis, double bruttogesamtpreis, double mwst) {
|
|
System.out.println("\tRechnung");
|
|
System.out.printf("\t\t Netto: %-20s %6d %10.2f %n", artikel, anzahl, nettogesamtpreis);
|
|
System.out.printf("\t\t Brutto: %-20s %6d %10.2f (%.1f%s)%n", artikel, anzahl, bruttogesamtpreis, mwst, "%");
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
// Benutzereingaben lesen
|
|
|
|
String artikel = liesString("Was möchten Sie bestellen?");
|
|
int anzahl = liesInt("Geben Sie die Anzahl ein:");
|
|
double preis = liesDouble("Geben Sie den Nettopreis ein:");
|
|
double mwst = liesDouble("Geben Sie den Mehrwertsteuersatz in Prozent ein:");
|
|
|
|
// Verarbeiten
|
|
double nettogesamtpreis = berechneGesamtnettopreis (anzahl, preis);
|
|
double bruttogesamtpreis = berechneGesamtnettopreis (nettogesamtpreis, mwst);
|
|
|
|
// Ausgeben
|
|
rechungausgeben(artikel, anzahl, nettogesamtpreis, bruttogesamtpreis, mwst);
|
|
}
|
|
|
|
}
|