20200903 20:15

This commit is contained in:
2020-09-03 20:15:50 +02:00
parent 753141a103
commit 5f3beaf27b
13 changed files with 20 additions and 10 deletions

View File

@@ -10,9 +10,11 @@ public class Template {
*/
public static void main(String[] args) {
int num = 1000;
for (int j = 0; j < 50; j++) {
for (int i = 0; i < 59; i++) {
int num = 1;
for (int j = 0; j < 3; j++) {
//Cycle through rows
for (int i = 0; i < 5; i++) {
//Cycle through columns
System.out.print(num+" ");
num++;
}