728x90
별 모양으로 정사각형 만들기
포스트 난이도: HOO_Intern
# Example codes
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("* * * * * * * * * *\n");
printf("* *\n");
printf("* *\n");
printf("* *\n");
printf("* *\n");
printf("* *\n");
printf("* *\n");
printf("* *\n");
printf("* *\n");
printf("* * * * * * * * * *\n");
printf("Posted by HOO.");
return 0;
}
* * * * * * * * * *
* *
* *
* *
* *
* *
* *
* *
* *
* * * * * * * * * *
Posted by HOO.
728x90
'C and C++' 카테고리의 다른 글
[C++] .h와 .hpp 중에 어떤 것을 사용해야할까요? (.h와 .hpp 차이점) (0) | 2023.10.03 |
---|---|
[C] c99이란? (2) | 2023.04.14 |
[C Examples] 적금 계산기 (0) | 2023.01.31 |
[C Examples] 킬로미터(Km)를 마일(Miles)로 변환하기: scaf(), %.f (0) | 2023.01.31 |
[C Language] 동적 메모리 할당(Dynamic Memory Allocation): Realloc Function (0) | 2022.05.31 |
댓글