dalao们,我这样写可以么
#include <stdio.h>
int main()
{
double arr[]={1.78, 1.77, 1.82, 1.79, 1.85, 1.75, 1.86, 1.77, 1.81, 1.80};
int i,j;
printf("\n************\t排队前\t*************\n");
for(i=0;i<10;i++)
{
printf("%.2f\t", arr[i]);
}
for(i=8; i>=0; i--)
{
for(j=0;j<=i;j++)
{
if( arr[j]>arr[j+1] ) //当前面的数比后面的数大时
{
double temp; //定义临时变量temp
temp=arr[j]; //将前面的数赋值给temp
arr[j]=arr[j+1]; //前后之数颠倒位置
arr[j+1]=temp; //将较大的数放在后面
}
}
}
printf("\n************\t排队后\t*************\n");
for(i=0;i<10;i++)
{
printf("%.2f\t ", arr[i]);
}
return 0;
}