Recent Posts
Notice
No Rules Rules
별 찍기 - 10 (feat. 백준, 2447번) 본문
728x90
반응형
별 찍기 - 10
https://www.acmicpc.net/problem/2447
반응형
// woohyeon.kim
// https://www.acmicpc.net/problem/2447
#include <iostream>
using namespace std;
char arr[3][3];
void solution(register int i, register int j, register int n) {
if (i / n % 3 == 1 && j / n % 3 == 1) cout << " ";
else
if (n / 3 == 0) cout << "*";
else solution(i, j, n / 3);
}
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
cin >> N;
for (register int i = 0, j; i < N; ++i) {
for (j = 0; j < N; ++j) solution(i, j, N);
cout << "\n";
}
return 0;
}
// *&)*@*
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
블랙잭 (feat. 백준, 2798번) (0) | 2022.08.01 |
---|---|
하노이 탑 이동 순서 (feat. 백준, 11729번) (0) | 2022.08.01 |
재귀함수가 뭔가요? (feat. 백준, 17478번) (0) | 2022.08.01 |
피보나치 수 5 (feat. 백준, 10870번) (0) | 2022.08.01 |
팩토리얼 (feat. 백준, 10872번) (0) | 2022.08.01 |
Comments