# Wirtschaftsstatistik Blatt 1 # Aufgabe 3 for (i in 1:100) { # i durchläuft alle Zahlen von 1 bis 100 # falls i durch 7 teilbar ist # (%% ist der Modulo-Operator) if (i %% 7 == 0) { # Ausgabe von i print(i) } }