Browse Source

removed Denglisch

master
Tim Lachmann 3 weeks ago
parent
commit
a1fefc1bd9
1 changed files with 8 additions and 8 deletions
  1. 8
    8
      src/Praktikum01/Zahlenfilter.java

+ 8
- 8
src/Praktikum01/Zahlenfilter.java View File

} }
Zahlenfilter checker = new Zahlenfilter(); Zahlenfilter checker = new Zahlenfilter();
checker.checkZahlen(grenze);
checker.checkNumbers(grenze);
} }
public void checkZahlen(int grenze) {
public void checkNumbers(int grenze) {
for (int i = 1; i <= grenze; i++) { for (int i = 1; i <= grenze; i++) {
checkDurchFuenfTeilbar(i);
checkEndetAufNeun(i);
checkSummeMitVorgaenger(i);
checkDevideByFive(i);
checkEndsWithNine(i);
checkSumWithPrev(i);
} }
} }
private void checkDurchFuenfTeilbar(int zahl) {
private void checkDevideByFive(int zahl) {
if (zahl % 5 == 0) { if (zahl % 5 == 0) {
System.out.println(zahl + " ist durch 5 teilbar!"); System.out.println(zahl + " ist durch 5 teilbar!");
} }
} }
private void checkEndetAufNeun(int zahl) {
private void checkEndsWithNine(int zahl) {
if (zahl % 10 == 9) { if (zahl % 10 == 9) {
System.out.println(zahl + " endet auf 9!"); System.out.println(zahl + " endet auf 9!");
} }
} }
private void checkSummeMitVorgaenger(int zahl) {
private void checkSumWithPrev(int zahl) {
if (zahl > 1) { if (zahl > 1) {
int vorgaenger = zahl - 1; int vorgaenger = zahl - 1;
int summe = zahl + vorgaenger; int summe = zahl + vorgaenger;

Loading…
Cancel
Save