OOP HomeWork
This commit is contained in:
16
oop_hw1/oop_hw1_6/main.cpp
Normal file
16
oop_hw1/oop_hw1_6/main.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#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 << "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" << endl;
|
||||
cout << d << e <<endl;
|
||||
cout << a << b << c;
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user