标签:style blog http io color ar os for sp
描述
一天TC的匡匡找ACM的小L玩三国杀,但是这会小L忙着哩,不想和匡匡玩但又怕匡匡生气,这时小L给匡匡出了个题目想难倒匡匡(小L很D吧),有一个数n(0<n<10),写出1到n的全排列,这时匡匡有点囧了,,,聪明的你能帮匡匡解围吗?
2 2 3
12 21 123 132 213 231 312 321
#include <iostream> #include <algorithm> using namespace std; int main() { int n; cin>>n; while(n--) { int m; cin>>m; int arr[10]={1,2,3,4,5,6,7,8,9,10}; do { for(int i =0;i<m;i++) cout<<arr[i]; cout<<endl; }while(next_permutation(arr,arr+m)); } return 0; }
标签:style blog http io color ar os for sp
原文地址:http://www.cnblogs.com/imwtr/p/4069579.html