728x90
반응형
저번 포스팅에 이어, ★찍기를 이용해서 반복문 연습을 하려한다.
https://dustink.tistory.com/29
ex6) 이렇게 나오려면?
★★★★★
★★★★
★★★
★★
★
for (int i=0; i<5; i++) { //5단
for (int j=0; j<5-i; j++) { //5개부터 차례대로 가감
System.out.print("★");
}
System.out.println(); //단 끝날때 줄바꿈
}
ex7) 이렇게 나오려면? (10x10)
★★★★★★★★★★
★★★★★★★★★★
★★★★★★★★★★
★★★★★★★★★★
★★★★★★★★★★
★★★★★★★★★★
★★★★★★★★★★
★★★★★★★★★★
★★★★★★★★★★
★★★★★★★★★★
for (int i=0; i<10; i++) { //10열
for (int j=0; j<10; j++) { //10행
System.out.print("★");
}
System.out.println(); //단 끝날때 줄바꿈
}
ex8) 이렇게 나오려면? (10x10)
★☆☆☆☆☆☆☆☆☆
☆