Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
for (int i = 0; i < 31; i++) {
if ( i % 7 == 0) {
System.out.print("\n");
}
System.out.print(i + "\t");
}
Ausgabe:
0 1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30