From e18fe9f740565d38bfcd7be443bced220be01f58 Mon Sep 17 00:00:00 2001 From: Ashwek Swamy <39827514+ashwek@users.noreply.github.com> Date: Sat, 9 Feb 2019 13:25:57 +0530 Subject: [PATCH] Update Bubble Sort.cpp --- Sorting/Bubble Sort.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;