Skip to content

Commit e18fe9f

Browse files
authored
Update Bubble Sort.cpp
1 parent 31abf60 commit e18fe9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sorting/Bubble Sort.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ int main()
88
{
99
int n;
1010
short swap_check=0;
11-
cout << "Enter the amount of numbers to sort: ";
11+
cout << "Enter the amount of numbers to sort: ";
1212
cin >> n;
1313
vector<int> numbers;
1414
cout << "Enter " << n << " numbers: ";
1515
int num;
1616

17-
//Input
17+
//Input
1818
for(int i=0; i<n; i++)
1919
{
2020
cin >> num;

0 commit comments

Comments
 (0)