2522 : 별찍기 - 12

풀이

오늘도 별이 바람에 스치운다

코드

#include <cstdio>

int abs(int a) { return a < 0 ? -a : a; }

int main() {
	int n, i, j, k;
	scanf("%d", &n);

	for (i = 1; i < n * 2; i++) {
		for (j = 0; j < abs(n - i); j++) printf(" ");
		for (k = 0; k < n - j; k++) printf("*");
		puts("");
	}

	return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2017-12-29 16:15

Read more posts by this author