반응형

[쉽게 배우는 자바 프로그래밍] 

Chapter 03. 제어문과 메서드

프로그래밍 문제 


4. 다음 실행 결과를 출력하는 프로그램을 for문을 사용해 작성하시오.


1
2
3
4
5
6
7
8
9
public static void main(String[] args) {
        // TODO Auto-generated method stub
        for (int i = 0; i < 6; i++) {
            for (int j = 0; j < i; j++) {
                System.out.print("*");
            }
            System.out.println("");
        }
    }



반응형