提交时间:2024-12-15 12:39:41

运行 ID: 58734

#include<bits/stdc++.h> using namespace std; int main() { int n,a[105],k; cin>>n>>k; // ① 创建原序列:数组元素表示学生编号 for(int i = 1; i <= n; i ++) a[i] = i; // ② 对序列子区间内的元素进行全排列 do{ // 对每一次排列只需要输出即可 for(int i = 1; i <= k; i ++) cout<<a[i]<<" "; cout<<endl; }while(next_permutation(a+1,a+n+1)); //序列起始位置是下标为1的位置 return 0; }