반응형

 

유저가 막대의 갯수를 1~50개 사이로 입력하면 별 막대가 생성됨.

#include <stdio.h>

int main()
{
	int i, j, x;
	int k;


	i = 1;
	for (j = 0; j < i; j++)
	{
		printf("막대의 높이(종료: -1):");
		scanf("%d", &x);

		if (x < 1 || 50 < x)
		{
			printf("1 부터 50 사이에서 입력하시오.\n");
			continue;
		}

		for (i = 1; i <= x; i++)
		{
			printf("*");
		}
		printf("\n");    // 끝났을때, i=11, j=0
		//break;
	}

	return 0;
}

 

(결과)

 

삼각 별찍기는 아래 참고

https://ansan-survivor.tistory.com/904

 

[C언어] C언어 줄 입력받아 삼각형 별찍기

아래 예제는 유저가 줄의 갯수를 입력하면 갯수만큼 삼각형의 *을 만들어준다. (scanf 가 에러 발생시 아래 참고) https://ansan-survivor.tistory.com/899 [Visual Studio 2019] 비주얼 스튜디오 2019 scanf_s 오..

ansan-survivor.tistory.com

 

반응형

+ Recent posts