编写一个函数SORT将放到一位数组中的若干个数安从小到大的顺序排序

2024-12-28 21:24:17
推荐回答(3个)
回答1:

#include

void soft(int a[5])
{
int i,j,temp;
for(i=0;i<5;i++)
for(j=i;j<5;j++)
if(a[i]>a[j])
temp=a[i];
a[i]=a[j];
a[j]=temp;
printf("%d",a);
}
void main()
{
int a[5];
scanf("%d",a);
soft(a);
}

回答2:

#include

void
soft(int
a[5])
{
int
i,j,temp;
for(i=0;i<5;i++)
for(j=i;j<5;j++)
if(a[i]>a[j])
temp=a[i];
a[i]=a[j];
a[j]=temp;
printf("%d",a);
}
void
main()
{
int
a[5];
scanf("%d",a);
soft(a);
}

回答3:

#include
void soft(int a[5])
{ int i,j,temp;
for(i=0;i<5;i++)
for(j=i;j<5;j++)
if(a[i]>a[j])
temp=a[i];
a[i]=a[j];
a[j]=temp;
printf("%d/n",a); }
void main()
{ int a[5];
scanf("%d/n",a);
soft(a); }
哈哈 抄的