[알고리즘 스터디] 1주차_재귀함수_Ex029

·2022년 11월 21일
0

Algorithm Study

목록 보기
23/77
post-custom-banner

문제

입력 n이 주어질 때, n층의 별 삼각형을 출력하시오.

입력/출력

3
*
**
***

코드

#include <iostream>

void PrintStar(int _Count)
{
	if (_Count == 0)
	{
		return;
	}
	
	std::cout << '*';
	PrintStar(_Count - 1);
}

void Recursive(int _Count)
{
	if (_Count - 1 < 0)
	{
		return;
	}

	Recursive(_Count - 1);
	PrintStar(_Count);
	std::cout << std::endl;
}

int main()
{
	int Count = 0;
	std::cin >> Count;

	Recursive(Count);
}

post-custom-banner

0개의 댓글