O. Copyright 2012 Pearson Education, Inc

Lab 11: File I/O Copyright © 2012 Pearson Education, Inc. Nested Loop Example //*******************************************************************...
Author: Tamsyn Walton
1 downloads 0 Views 724KB Size
Lab 11: File I/O

Copyright © 2012 Pearson Education, Inc.

Nested Loop Example //******************************************************************** // Stars.java Author: Lewis/Loftus // // Demonstrates the use of nested for loops. //******************************************************************** public class Stars { //----------------------------------------------------------------// Prints a triangle shape using asterisks (stars) //----------------------------------------------------------------public static void main (String[] args) * { ** final int MAX_ROWS = 10;

Output

for (int row = 1; row

Suggest Documents