#include <bits/stdc++.h>
using namespace std;
//1329 : 별삼각형3
int main()
{
int n;
cin >> n;
int s=0;
int e=0;
char m[100][100]={0,};
for(int i=0; i<n; i++){
//space
for(int j=s;j<=e;j++){
m[i][j]='*';
}
cout << s << "," << e << "\n";
if(i>n/2-1){
s--;
e=e-3;
}
else{
s++;
e=e+3;
}
//printf(" \n");
}
for(int i=0; i<n; i++){
for(int j=0; j<n*3; j++){
cout << m[i][j];
}
cout << "\n";
}
return 0;
}
'정보올림피아드-KOI > 기초 문법 문제' 카테고리의 다른 글
Queue - 파이썬 (0) | 2021.01.24 |
---|---|
선택정렬 - 파이썬 (0) | 2021.01.24 |
1641 : 숫자삼각형 (0) | 2021.01.24 |
배열초기화 fill (1차원 배열) (0) | 2021.01.24 |
배열초기화 fill (2차원 배열) (0) | 2021.01.24 |