diff --git a/Sorting/Bubble Sort.cpp b/Sorting/Bubble Sort.cpp index aa4930e82..fed01bfc5 100644 --- a/Sorting/Bubble Sort.cpp +++ b/Sorting/Bubble Sort.cpp @@ -8,13 +8,13 @@ int main() { int n; short swap_check=0; - cout << "Enter the amount of numbers to sort: "; + cout << "Enter the amount of numbers to sort: "; cin >> n; vector numbers; cout << "Enter " << n << " numbers: "; int num; - //Input + //Input for(int i=0; i> num;