Please use c++ to implement bubble sort

I can implement bubble sort with the following c program: #include <stdio.h>

int main() { int array[100], n, c, d, swap;

printf("Enter the number of elements to be sorted\n"); scanf("%d", &n);

printf("Enter %d elements\n", n);

for (c = 0; c < n; c++) scanf("%d", &array[c]);

for (c = 0 ; c < ( n - 1 ); c++) { for (d = 0 ; d < n - c - 1; d++)

Guess you like

Origin blog.csdn.net/weixin_42601702/article/details/129606814