Repository zur Vorlesung Prog3
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Zahlenfilter.java 596B

123456789101112131415161718
  1. public class Zahlenfilter {
  2. public static void main(String[] args) {
  3. runNumbers();
  4. }
  5. public static void runNumbers() {
  6. for (int i = 1; i <= 200; i++) {
  7. int a = 2 * i - 1;
  8. if (i % 5 == 0) {
  9. System.out.println(i + " ist durch 5 teilbar!");
  10. } else if (i % 10 == 9) {
  11. System.out.println(i + " endet auf 9!");
  12. } else if (a % 3 == 0) {
  13. System.out.println(i + " und " + (i - 1) + " addiert ergeben " + a + " und " + a + " ist durch 3 teilbar!");
  14. }
  15. }
  16. }
  17. }