Files
OOP-Cpp/oop_hw1/oop_hw1_6/main.cpp
2025-08-11 00:01:30 +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;
}