java nested loop code example
Example: java nested loop
// This nested for loop will print 5 rows of 20 asterisks each
for(int i = 0; i < 5; i++) {
for(int j = 0; j < 20; j++) {
System.out.print("*");
}
System.out.println();
}
// This nested for loop will print 5 rows of 20 asterisks each
for(int i = 0; i < 5; i++) {
for(int j = 0; j < 20; j++) {
System.out.print("*");
}
System.out.println();
}