Files
2025-12-31 00:39:23 +08:00

16 lines
273 B
C++

#include <iostream>
#include "sort.h"
using namespace std;
int main() {
int d, e;
cin >> d >> e;
sort_two(d, e);
int a, b, c;
cin >> a >> b >> c;
sort_three(a, b, c);
cout << "调整结束,输出结果:" << endl;
cout << d << e <<endl;
cout << a << b << c;
return 0;
}