-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathT_Sort_Numbers.cpp
98 lines (88 loc) · 1.99 KB
/
T_Sort_Numbers.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#include <iostream>
using namespace std;
int main()
{
long long a, b, c;
cin >> a >> b >> c;
if (a == b && b == c)
{
cout << a << endl
<< b << endl
<< c << endl
<< endl;
}
else if (a < b && a < c)
{
cout << a << endl;
if (b < c)
{
cout << b << endl
<< c << endl
<< endl;
}
else
{
cout << c << endl
<< b << endl
<< endl;
}
}
else if (b < c)
{
cout << b << endl;
if (a < c)
{
cout << a << endl
<< c << endl
<< endl;
}
else
{
cout << c << endl
<< a << endl
<< endl;
}
}
else
{
cout << c << endl;
if (a < b)
{
cout << a << endl
<< b << endl
<< endl;
}
else
{
cout << b << endl
<< a << endl
<< endl;
}
}
cout << a << endl
<< b << endl
<< c << endl;
// Above logic is redundunt, below is a more efficient logic without nested conditional statements using arrays and sorting fiunctions.
/*
#include <iostream>
#include <algorithm> // For std::sort
using namespace std;
int main()
{
long long numbers[3]; // Array to store the three numbers
cin >> numbers[0] >> numbers[1] >> numbers[2]; // Input three numbers
// Sort the array
sort(numbers, numbers + 3);
// Print the sorted numbers
for (int i = 0; i < 3; i++) {
cout << numbers[i] << endl; // Output each number on a new line
}
// Print the original numbers
cout << endl;
for (int i = 0; i < 3; i++) {
cout << numbers[i] << endl; // Output each number on a new line
}
return 0; // Indicate that the program ended successfully
}
*/
}