#29652: C++紀錄


e3524167 (Kenlogin)

學校 : 不指定學校
編號 : 186743
來源 : [182.233.207.92]
最後登入時間 :
2022-03-17 21:12:56
a524. 手機之謎 | From: [182.233.207.92] | 發表日期 : 2022-03-17 21:14

#include <iostream>

#include <string>

#include <sstream>

#include <cmath>

#include <iomanip>

#include <algorithm>

using namespace std;

int main()

{

ios::sync_with_stdio(false); cin.tie(0);

int x;

 

while (cin >> x)

{

int a[] = { 1,2,3,4,5,6,7,8 };

sort(a, a + x);

reverse(a, a + x);

 

do

{

for (int i = 0; i < x; i++)

{

cout << a[i];

}

cout << "\n";

} while (prev_permutation(a, a + x));

}

}

 

 
ZeroJudge Forum