728x90
1 2 3 4 5 6 7 8 9 10 11 12 13 | #include <stdio.h> int main() { int a = 0, i, y; scanf("%d", &a); for (i = 0; i < a; i++) { for (y = 0; y <= i; y++) { printf("*"); } printf("\n"); } } | cs |
728x90
'Study > BAEKJOON' 카테고리의 다른 글
[BAEKJOON] 10871번 : X보다 작은 수 (0) | 2020.09.14 |
---|---|
[BAEKJOON] 2439번 : 별 찍기 - 2 (0) | 2020.09.14 |
[BAEKJOON] 11022번 : A+B - 8 (0) | 2020.09.13 |
[BAEKJOON] 11021번 : A+B - 7 (0) | 2020.09.13 |
[BAEKJOON] 2742번 : 기찍 N (0) | 2020.09.13 |