http://www.jungol.co.kr/bbs/board.php?bo_table=pbank&wr_id=227&sca=10d0
#include <bits/stdc++.h>
using namespace std;
//함수3 - 자가진단5
int out[30];
int n;
void rec(int index){
if(index == n){
for(int i=0; i<n; i++){
printf("%d ", out[i]);
}
puts("\n");
return;
}
for(int i=0; i<6; i++){
out[index] = i+1;
rec(index+1);
}
}
int main() {
cin >> n;
rec(0);
return 0;
}
'정보올림피아드-KOI > 기초 문법 문제' 카테고리의 다른 글
함수3 - 형성평가6 (0) | 2021.12.30 |
---|---|
591 : 함수3 - 자가진단6 (0) | 2021.12.30 |
592 : 함수3 - 자가진단4 (0) | 2021.12.30 |
589 : 함수3 - 자가진단3 (0) | 2021.12.30 |
미로탈출 - 파이썬 (0) | 2021.02.04 |