jzjason


私信TA

用户名:yzjason

访问量:1253

签 名:

等  级
排  名 3815
经  验 1837
参赛次数 0
文章发表 2
年  龄 0
在职情况 学生
学  校 黑龙江科技大学
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include<iostream>
#include<algorithm>
using namespace std;
int a[10]={0,1,2,3,4,5,6,7,8,9};
int main()
{
    int n;
    cin>>n;
    int i=1;
    do
    {
        if(i==n)
        {
            for(int j=0;j<10;j++)
            cout<<a[j];
            cout<<endl;
        }
        i++;
    }while(next_permutation(a,a+10));
}

 

0.0分

1 人评分

  评论区

  • «
  • »