Contents

[백준]2446 별 찍기 - 9

Contents

https://www.acmicpc.net/problem/2446

풀이:

[백준]2442 별찍기 - 5 에 나온 삼각형을 방향을 반대로 2번 출력한다.

코드:

사용언어 : c++

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#include <iostream>
using namespace std;
int n;
int main() {
	cin >> n;
	for (int i = 0; i < n - 1; i++) {
		for (int t = 0; t < i; t++) cout << " ";
		for (int t = 1; t < (n -i) * 2; t++) cout << "*";
		cout << endl;
	}
	for (int i = 0; i < n; i++) {
		for (int t = 1; t < n - i; t++) cout << " ";
		for (int t = 0; t < i * 2 + 1; t++) cout << "*";
		cout << endl;
	}
}