作者在 2007-04-28 19:20:00 发布以下内容
#include<stdio.h>
#include<conio.h>
#include<string.h>
main()
{
int i,j,k,temp;
clrscr();
printf("Enter three numbers:");
scanf("%d%d%D",&i,&j,&k);
if(i>j)
{temp=i;i=j;j=temp;}
if(i>k)
{temp=i;i=k;k=temp;}
if(j>k)
{temp=j;j=k;k=temp;}
printf("%d->%d->%d...",i,j,k);
getch();
}