Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
ed4c058713
@ -44,6 +44,5 @@ public class EinkommenInfo {
|
||||
System.out.print("Name des Gebietes :");
|
||||
eingabe = reader.nextLine();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -1,2 +1,72 @@
|
||||
|
||||
import java.sql.Array;
|
||||
import java.util.*;
|
||||
|
||||
public class GebietsListe {
|
||||
private List<Gebiet> gebiete;
|
||||
|
||||
public GebietsListe(List<Gebiet> gebiete) {
|
||||
this.gebiete = gebiete;
|
||||
}
|
||||
|
||||
public Gebiet getGebietMinDurchschnittsEinkommen(){
|
||||
int gebietA = 0;
|
||||
int gebietB = 0;
|
||||
Gebiet gebietMitMinDurchschnittsEinkommen = null;
|
||||
for (Gebiet g:gebiete) {
|
||||
gebietA = g.getDurchschnittsEinkommen();
|
||||
if (gebietA < gebietB) {
|
||||
gebietMitMinDurchschnittsEinkommen = g;
|
||||
gebietB = gebietA;
|
||||
}
|
||||
}
|
||||
if (gebietMitMinDurchschnittsEinkommen == null) {
|
||||
System.err.println("Fehler bei der Suche nach dem geringsten Durchschnittseinkommen.");
|
||||
}
|
||||
return gebietMitMinDurchschnittsEinkommen;
|
||||
}
|
||||
|
||||
public Gebiet getGebietMaxAnzahlEinwohner() {
|
||||
int gebietA = 0;
|
||||
int gebietB = 0;
|
||||
Gebiet gebietMitMaxEinwohnern = null;
|
||||
for (Gebiet g:gebiete) {
|
||||
gebietA = g.getAnzahlEinwohner();
|
||||
if (gebietA > gebietB)
|
||||
{
|
||||
gebietMitMaxEinwohnern = g;
|
||||
gebietB = gebietA;
|
||||
}
|
||||
}
|
||||
if (gebietMitMaxEinwohnern == null)
|
||||
{
|
||||
System.err.println("Fehler bei der Suche nach den meisten Einwohnern .");
|
||||
}
|
||||
return gebietMitMaxEinwohnern;
|
||||
}
|
||||
|
||||
public int getAnzahlGesamt()
|
||||
{
|
||||
return gebiete.size();
|
||||
}
|
||||
|
||||
public int getAnzahlUnvollstaendig(){
|
||||
int zaehler = 0;
|
||||
for (Gebiet g:gebiete) {
|
||||
if (g.getJahr() <= 0 || g.getSchlüssel() <= 0 || g.getName() == null || g.getGesamtEinkommen() <= 0 || g.getDurchschnittsEinkommen() <= 0) {
|
||||
zaehler++;
|
||||
}
|
||||
}
|
||||
return zaehler;
|
||||
}
|
||||
|
||||
public List<Gebiet> getGebieteNachNamen(String namensanfang) {
|
||||
List<Gebiet> gebiete = new ArrayList<Gebiet>();
|
||||
for (Gebiet g:gebiete) {
|
||||
if (g.getName().contains(namensanfang)){
|
||||
gebiete.add(g);
|
||||
}
|
||||
}
|
||||
return gebiete;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user