Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
248eae539c
48
src/EinkommenInfo.java
Normal file
48
src/EinkommenInfo.java
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
import java.util.List;
|
||||||
|
import java.util.Scanner;
|
||||||
|
|
||||||
|
public class EinkommenInfo {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
System.out.println("Übersicht über Bevölkerungszahl und Einkommen in Deutschland");
|
||||||
|
GebietsDatei gebietsDatei = new GebietsDatei("Einkommen.csv");
|
||||||
|
List<Gebiet> gebiete = gebietsDatei.getGebiete();
|
||||||
|
GebietsListe gebietsListe = new GebietsListe(gebiete);
|
||||||
|
|
||||||
|
System.out.println(gebiete.getAnzahlGesamt() + " Gebiete wurden eingelesen.");
|
||||||
|
System.out.println(gebiete.getAnzahlUnvollständig() + " davon haben unvollständige Angaben\n");
|
||||||
|
|
||||||
|
System.out.println("Gebiet mit dem geringsten Durchschnittseinkommen:");
|
||||||
|
Gebiet tmp = gebietsListe.GebietMinDurchschnittsEinkommen();
|
||||||
|
System.out.println(tmp.getName());
|
||||||
|
System.out.println(tmp.getAnzahlEinwohner());
|
||||||
|
System.out.println(tmp.getDurchschnittsEinkommen());
|
||||||
|
System.out.println("");
|
||||||
|
|
||||||
|
System.out.println("Gebiet mit der größten Einwohnerzahl");
|
||||||
|
tmp = gebietsListe.(getGebietMaxAnzahlEinwohner());
|
||||||
|
System.out.println(tmp.getName());
|
||||||
|
System.out.println(tmp.getAnzahlEinwohner());
|
||||||
|
System.out.println(tmp.getDurchschnittsEinkommen());
|
||||||
|
System.out.println("");
|
||||||
|
|
||||||
|
System.out.print("Name des Gebietes :");
|
||||||
|
Scanner reader = new Scanner(System.in);
|
||||||
|
String eingabe = reader.nextLine();
|
||||||
|
|
||||||
|
while(!eingabe.isEmpty()) {
|
||||||
|
List<Gebiet> tmpList;
|
||||||
|
tmpList = gebiete.getGebieteNachNamen(eingabe);
|
||||||
|
|
||||||
|
for (Gebiet g : tmpList) {
|
||||||
|
g.getName();
|
||||||
|
g.getAnzahlEinwohner();
|
||||||
|
g.getDurchschnittsEinkommen();
|
||||||
|
System.out.println("");
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println(tmpList.size() + " Gebiete wurden gefunden.");
|
||||||
|
System.out.print("Name des Gebietes :");
|
||||||
|
eingabe = reader.nextLine();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,17 +1,16 @@
|
|||||||
public class Gebiet {
|
public class Gebiet implements GebietInterface{
|
||||||
private int jahr;
|
private int jahr;
|
||||||
private int schlüssel;
|
private int schluessel;
|
||||||
private String name;
|
private String name;
|
||||||
private long gesamtEinkommen;
|
private long gesamtEinkommen;
|
||||||
private int durchschnittsEinkommen;
|
private int durchschnittsEinkommen;
|
||||||
|
|
||||||
public Gebiet(int jahr, int schlüssel, String name, long gesamtEinkommen, int durchschnittsEinkommen) {
|
public Gebiet(int jahr, int schluessel, String name, long gesamtEinkommen, int durchschnittsEinkommen) {
|
||||||
this.jahr = jahr;
|
this.jahr = jahr;
|
||||||
this.schlüssel = schlüssel;
|
this.schluessel = schluessel;
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.gesamtEinkommen = gesamtEinkommen;
|
this.gesamtEinkommen = gesamtEinkommen;
|
||||||
this.durchschnittsEinkommen = durchschnittsEinkommen;
|
this.durchschnittsEinkommen = durchschnittsEinkommen;
|
||||||
// lol
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getJahr() {
|
public int getJahr() {
|
||||||
@ -19,7 +18,7 @@ public class Gebiet {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public int getSchlüssel() {
|
public int getSchlüssel() {
|
||||||
return schlüssel;
|
return schluessel;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getName() {
|
public String getName() {
|
||||||
@ -42,7 +41,7 @@ public class Gebiet {
|
|||||||
public String toString() {
|
public String toString() {
|
||||||
return "Gebiet{" +
|
return "Gebiet{" +
|
||||||
"jahr=" + jahr +
|
"jahr=" + jahr +
|
||||||
", schlüssel=" + schlüssel +
|
", schluessel=" + schluessel +
|
||||||
", name='" + name + '\'' +
|
", name='" + name + '\'' +
|
||||||
", gesamtEinkommen=" + gesamtEinkommen +
|
", gesamtEinkommen=" + gesamtEinkommen +
|
||||||
", durchschnittsEinkommen=" + durchschnittsEinkommen +
|
", durchschnittsEinkommen=" + durchschnittsEinkommen +
|
||||||
|
8
src/GebietInterface.java
Normal file
8
src/GebietInterface.java
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
public interface GebietInterface {
|
||||||
|
int getJahr();
|
||||||
|
int getSchlüssel();
|
||||||
|
String getName();
|
||||||
|
long getGesamtEinkommen();
|
||||||
|
int getDurchschnittsEinkommen();
|
||||||
|
int getAnzahlEinwohner();
|
||||||
|
}
|
@ -1,4 +1,5 @@
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.nio.file.Paths;
|
import java.nio.file.Paths;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@ -15,8 +16,11 @@ public class GebietsDatei extends GebietsListe {
|
|||||||
public ArrayList<Gebiet> laden() {
|
public ArrayList<Gebiet> laden() {
|
||||||
try {
|
try {
|
||||||
Path pfad = Paths.get(dateiname);
|
Path pfad = Paths.get(dateiname);
|
||||||
gebiete = new ArrayList<Gebiet>();
|
List<String> zeilen = Files.readAllLines(pfad);
|
||||||
return gebiete;
|
|
||||||
|
for (zeilen : zeilen){
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch (IOException e){
|
catch (IOException e){
|
||||||
System.out.println("Die Datei kann nicht gelesen werden");
|
System.out.println("Die Datei kann nicht gelesen werden");
|
||||||
|
Loading…
Reference in New Issue
Block a user