728x90
★ 문제
- 첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제
- 하지만, 오른쪽을 기준으로 정렬한 별(예제 참고)을 출력하시오.
*
**
***
****
*****
★ 소스코드
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int num = scan.nextInt();
String result = "*";
for(int i=0; i<num; i++) {
for(int j=1; j<num-i; j++) {
System.out.print(" ");
}
for(int j=0; j<i+1; j++) {
System.out.print("*");
}
System.out.println();
}
}
}
728x90
'백준 알고리즘' 카테고리의 다른 글
3. 반복문 - 12 (10951번) (0) | 2023.03.01 |
---|---|
3. 반복문 - 11 (10952번) (0) | 2023.03.01 |
3. 반복문 - 9 (2438번) (0) | 2023.03.01 |
3. 반복문 - 8 (11022번) (0) | 2023.03.01 |
3. 반복문 - 7 (11021번) (0) | 2023.03.01 |