用C++写一个冒泡排序
时间: 2023-03-15 15:51:14 浏览: 68
C++ 冒泡排序
4星 · 用户满意度95%
我可以为你编写一个用C语言实现的冒泡排序程序,代码如下:#include<stdio.h>int main(){
int a[100], n, i, j, temp;printf("Enter the number of elements in the array\n");
scanf("%d", &n);printf("Enter the array elements\n");
for(i=0; i<n; i++)
sc
阅读全文