#include <iostream>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int num = 0;
cin >> num;
for(int i=0; i<num; i++){
for(int a=0; a<i; a++)
cout << " ";
for(int b=0; b<(num*2-1)-i*2; b++)
cout << "*";
cout << "\n";
}
for(int i=num-1; i>0; i--){
for(int a=1; a<i; a++)
cout << " ";
for(int b=0; b<(num*2)+1-i*2; b++)
cout << "*";
cout << "\n";
}
return 0;
}
아무런 계획없이 의식의 흐름대로 마구잡이 작성해본 코드가
한 번에 정답이었다.
'🖥️ CS > Baekjoon Algorithms' 카테고리의 다른 글
#15649번 N과M(1) (c++) (0) | 2020.03.15 |
---|---|
#10997번 별 찍기 - 21 (c++) (0) | 2020.03.15 |
#1011번 Fly me to the Alpha Centauri (c++) (0) | 2020.03.15 |
#10814 나이순정렬 (c++) (0) | 2020.03.13 |
#1181번 단어정렬 (c++) (0) | 2020.03.12 |