LoopMain02

"Java Stuty"

Posted by Chungman on March 10, 2021

package Lecture3;

// ***** //

// ***** //

// ***** //

public class LoopMain02 {

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
31
32
33
public static void main(String[] args) {
	
	for(int i=0; i<=2; i++) {
		
		for(int j=0; j<=4; j++) {
		System.out.print("*");
		}
		
		System.out.println();
	}
	
	/*
	for(int i=0; i<=4; i++) {			// *****
										// ****
		for(int j=i; j<=4; j++) {		// ***
		System.out.print("*");			// **
		}								// *
		
		System.out.println();
	}
	*/
	
	/*
	for(int i=0; i<=4; i++) {			// *****
										// ****
		for(int j=i; j<=4; j++) {		// ***
		System.out.print("*");			// **
		}								// *
		
		System.out.println();
	}
	*/
}

}