#include <bits/stdc++.h>
using namespace std;
//숫자삼각형 (종류3)
int main()
{
int n;
cin >> n;
int x;
int a[100][100];
fill(&a[0][0], &a[99][100], -1);
int p = 1;
for(int i=0; i<2*n-1; i++){
for(int j=0; j<p; j++){
a[i][j] = j+1;
}
if(i<n/2){
p++;
}
else{
p--;
}
}
for(int i=0; i<2*n; i++){
for(int j=0; j<n; j++){
if(a[i][j] == -1){
cout << " ";
}
else{
cout << a[i][j];
}
}
cout << "\n";
}
return 0;
}
'정보올림피아드-KOI > 기초 문법 문제' 카테고리의 다른 글
배열초기화 fill (2차원 배열) (0) | 2021.01.24 |
---|---|
배열초기화 fill (2차원 배열) (0) | 2021.01.24 |
반복제어문2 - 파이썬 (0) | 2021.01.10 |
반복제어문3 - python (0) | 2021.01.10 |
#큰수의 법칙 - Python (0) | 2021.01.10 |