Normal
[CODE=java] public static void teiler (int s) { for (int i = 0; i < s; i++) { if (s % 2 == 0) { System.out.print(s + " "); } else { continue; } } }[/CODE]was machst du denn hier überhaupt?
[CODE=java] public static void teiler (int s) {
for (int i = 0; i < s; i++) {
if (s % 2 == 0) {
System.out.print(s + " ");
} else {
continue;
}
}[/CODE]was machst du denn hier überhaupt?