提交时间:2024-12-16 13:48:21
运行 ID: 58777
#include <bits/stdc++.h> using namespace std; int main( ) { int n,r,a[100]; cin>>n>>r; for(int i = pow(2,n) - 1; i >= 0; i --) { int cnt = 0; int t = i; for(int j = n; j >= 1; j --) { if(t % 2) { a[cnt] = j; cnt ++; } t /= 2; } if(cnt == r) { for(int j = cnt - 1; j >= 0; j --) cout<<setw(3)<<a[j]; cout<<endl; } } return 0; }