将输入的5个数按大小顺序(小到大)排列

请用C语言写出全的程序。... 请用C语言写出全的程序。 展开
 我来答
fzp217
2007-12-04 · TA获得超过308个赞
知道小有建树答主
回答量:201
采纳率:18%
帮助的人:93.5万
展开全部
#include<stdio.h>
int main()
{
int a[5],i,j,temp;
for(i=0;i<5;i++) /*接收这5个数*/
scanf("%d",&a[i]);
for(i=1;i<5;i++) /*用冒泡法排序,每次把一个大数放在最后面*/
for(j=0;j<5-i;j++)
if(a[j]>a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
for(i=0;i<5;i++) /*从小到大输出这5个数*/
printf("%d ",a[i]);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yhy19820816
2007-12-04 · TA获得超过304个赞
知道小有建树答主
回答量:308
采纳率:0%
帮助的人:347万
展开全部
#include<stdio.h>
void main()
{
int i,j,temp,a[5];
printf("input numbers:\n");
for(i=0;i<5;i++)/*输入5个数*/
scanf("%d",&a[i]);
/*下面用冒泡法排序*/
for(i=0;i<4;i++)
for(j=0;j<4-i;j++)
if(a[j]>a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
for(i=0;i<5;i++)/*输出这5个数*/
printf("%5d",a[i]);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
cyanglm
2007-12-04
知道答主
回答量:4
采纳率:0%
帮助的人:0
展开全部
#include<stdio.h>
main()
{int a b c d e;
if(a>b){t=a,a=b,b=t};
if(b>c){t=b,b=c,c=t};
if(c>d){t=c,c=d,d=t};
if(d>e){t=d,d=e,e=t};
if(e>a){t=e,e=a,a=t};
printf("%d %d %d %d %d",a b c d e);
}
这是我想的也不知道对不对 大家也可以帮我看看
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
zhongguo0号
2007-12-04 · TA获得超过267个赞
知道小有建树答主
回答量:583
采纳率:0%
帮助的人:424万
展开全部
#include<stdio.h>
void main()
{int a[5],t,i,j;
scanf("%d%d%d%d%d",a);
for(i=0;i<5;i++)
for(j=1;j<=5;j++)
if(a[i]>a[j])
{t=a[i];
a[i]=a[j];
a[j]=t;}
printf("%d %d %d %d %d",a[0],a[1],a[2],a[3],a[4]);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
京东武则天
2007-12-04 · TA获得超过421个赞
知道小有建树答主
回答量:613
采纳率:0%
帮助的人:360万
展开全部
#include<stdio.h>
#define TOTOL 5

void main(void)
{
int num[TOTOL];
int x,y;
int temp;
for(temp = 0; temp < TOTOL; temp ++)
{
printf("Please input the %d number:\n", temp + 1);
scanf("%d", &num[temp]);
}
for(y=0;y<TOTOL-1;y++)
for(x=0;x<TOTOL-y;x++)
{
if( num[x] > num[x + 1] )
{
temp = num[x];
num[x] = num[x +1];
num[x + 1] = temp;
}
}
printf("The number from big to small is: ");
for(temp = 0; temp < TOTOL; temp ++)
{
printf(" %d", num[temp]);
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(5)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式