关于C++的题目,求详细解答,谢谢!!

Writingafunctiontosortanintegerarrayfromlowesttohighestbyapplyingeitherselectionsorto... Writing a function to sort an integer array from lowest to highest by applying either selection sort or bubble sort. The main function and sort function prototype is already given to you. To write the function below the main function.

void SortIntegerArray(int a [], int n);
#include <stdio.h>
#define N 10
main()
{
int i,array[N];
printf(“Input the number to be sorted:”);
for(i=0;i<N;i++)
scanf(“%d”,&array[i]);

SortIntegerArray(array,N);

for(i=0;i<N;i++)
printf(“%d”,array[i]);
}
展开
 我来答
catchsnake
2006-12-30 · TA获得超过676个赞
知道答主
回答量:98
采纳率:0%
帮助的人:0
展开全部
void SortIntegerArray(int a[], int n){
int i,j,temp;n--;
for(i=0;i<n;i++)
for(j=0;j<n-i;j++)
if(a[j]>a[j+1]){temp=a[j];a[j]=a[j+1];a[j+1]=temp;}
};
#include <stdio.h>
#define N 10
void main()
{
int i,array[N];
printf(\"Input the number to be sorted:\");
for(i=0;i<N;i++)
scanf(\"%d\",&array[i]);

SortIntegerArray(array,N);

for(i=0;i<N;i++)
printf(\"%d \",array[i]);
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式