C++ 代码
#include<bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n;
cin >> n;
cout << '\n';
for (int i = 1; i <= int(pow(2, n) - 1); ++i) {
for (int j = 0; j < n; ++j) {
if (((1 << j) & i) != 0) {
cout << j + 1 << ' ';
}
}
cout << '\n';
}
return 0;
}