Small Grey Outline Pointer baekjoon c++ 2438 별찍기1
본문 바로가기
Dev./Algorithm Prac

baekjoon c++ 2438 별찍기1

by sso. 2022. 3. 20.
#include <stdio.h>
int main() {

	int n;

	scanf("%d", &n);
    
	for (int i = 0; i <n; i++) {
		for (int j = 0; j < i+1; j++) {
			printf("*");
		}
	printf("\n");
	}

}

<결과>

5
*
**
***
****
*****

 

 

이중 for문 사용

i행 j열

1씩 증가할 수록 별이 어떻게 되는지 생각하기

 

728x90

'Dev. > Algorithm Prac' 카테고리의 다른 글

baekjoon c++ 10951 A+B  (0) 2022.03.20
baekjoon c++ 10952 A+B  (0) 2022.03.20
baekjoon c++ 10871 X보다 작은 수  (0) 2022.03.20
baekjoon c++ 2439 별찍기2  (0) 2022.03.20
baekjoon [c++] 2480 :: 주사위 세개  (0) 2022.03.20

댓글