<알고리즘 문제풀이&연습>/[C++] 백준, 프로그래머스 등등

[백준 2446] 별찍기9

BlockDMask 2017. 11. 21. 23:30
반응형
  • 안녕하세요. BlockDMask 입니다.

  • 별찍기 시리즈중 아홉번째 입니다.
    171101 문제 빼먹음 -> 171121 완료

0. 제목

  • 백준 2446 별찍기9

  • BOJ 2446 별찍기9

  • C++ 별찍기

1. 문제 설명

  • 모래시계 모양으로 별을 찍으면됩니다.

2. 풀이 과정


3. 소스 코드


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//https://www.acmicpc.net/problem/2446
//BOJ_2446_star9
 
#include<iostream>
#include<cstdio>
using namespace std;
 
class star{
private:
    int n;
    void draw(int key, bool isStar) const;
    void printStar(bool a) const;
public:
    star(int n):n(n){}
 
    void callDraw(bool diamond) const{
        for(int i=0; i<n-1; i++){
            this->draw(i, diamond);    //위
        }
        for(int i=0; i<n; i++){
            this->draw(n-i-1, diamond);  //아래
        }
    }
 
};
void star::draw(int key, bool isStar) const{
    for(int i=0; i<key; i++) printStar(isStar);
    for(int j=0; j<(2*n)-(2*key)-1; j++) printStar(!isStar);
    //for(int i=0; i<key; i++) printStar(isStar);
    printf("\n");
 
}
void star::printStar(bool a) const{
    if(a) printf(" ");
    else printf("*");
}
 
int main(void){
    int n;
    cin >> n;
    star *= new star(n);
    s->callDraw(true);
    delete s;
    return 0;
}
 
cs


4. 인증


문제 출처 - https://www.acmicpc.net/problem/2446

감사합니다.

반응형