-
Notifications
You must be signed in to change notification settings - Fork 192
/
Copy pathSort_Income_List.cpp
38 lines (31 loc) · 1.03 KB
/
Sort_Income_List.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
#include <iostream>
int main() {
int incomeList[10];
std::cout << "Enter the income of 10 people:" << std::endl;
for (int person = 0; person < 10; person++) {
std::cout << "Enter income: ";
std::cin >> incomeList[person];
}
for (int firstIndex = 0; firstIndex < 9; firstIndex++) {
int swapCount = 0;
int minIncome = incomeList[firstIndex];
int minIndex = firstIndex;
for (int secondIndex = firstIndex + 1; secondIndex < 10; secondIndex++) {
if (minIncome > incomeList[secondIndex]) {
minIncome = incomeList[secondIndex];
swapCount++;
minIndex = secondIndex;
}
}
if (swapCount != 0) {
int temp = incomeList[firstIndex];
incomeList[firstIndex] = minIncome;
incomeList[minIndex] = temp;
}
}
std::cout << "Sorted income list:" << std::endl;
for (int income : incomeList) {
std::cout << income << std::endl;
}
return 0;
}