BIG
----*
---**
--***
-****
*****
위와 같이 삼각형을 출력하시오.
단. 반드시 반복문 WHILE 문을 사용해야 함.
#define _CRT_SECURE_NO_WARNINGS // Visual Studio 사용시 발생하는 경고에 대한 처리 설정
#include <stdio.h>
int main() {
int n = 5;
int i = 1;
while (i <= n) {
int j = 1;
while (j <= n-i) {
printf("-");
j++;
}
while (j <= n) {
printf("*");
j++;
}
printf("\n");
i++;
}
return 0;
}
LIST
'!!...C' 카테고리의 다른 글
[ C ] Sample Code - windows beep mos code (0) | 2023.02.25 |
---|---|
[ C ] Sample Code - for 삼각형 - 01 (0) | 2023.02.25 |
[ C ] Sample Code - 반복문 & 제어문 연습문제 - 04 (0) | 2023.02.25 |
[ C ] Sample Code - 반복문 & 제어문 연습문제 - 03 (0) | 2023.02.25 |
[ C ] Sample Code - 반복문 & 제어문 연습문제 - 02 (0) | 2023.02.25 |