題目連結: https://zerojudge.tw/ShowProblem?problemid=c074
# 解題思路
就是窮舉阿,因為只挑六個號碼所以硬幹一定沒錯!!
# 程式碼
#include <iostream> | |
using namespace std; | |
int main(){ | |
int t=0; | |
for(int n;cin>>n&&n;t++){ | |
if(t) cout<<endl; | |
int num[13]={0}; | |
for(int i=0;i<n;i++) cin>>num[i]; | |
for(int a=0;a<n-5;a++) | |
for(int b=a+1;b<n-4;b++) | |
for(int c=b+1;c<n-3;c++) | |
for(int d=c+1;d<n-2;d++) | |
for(int e=d+1;e<n-1;e++) | |
for(int f=e+1;f<n;f++) | |
cout<<num[a]<<" "<<num[b]<<" "<<num[c]<<" "<<num[d]<<" "<<num[e]<<" "<<num[f]<<endl; | |
} | |
return 0; | |
} |