[ create a new paste ] login | about

Link: http://codepad.org/XGwCphD5    [ raw code | output | fork ]

C, pasted on Jun 13:
#include <stdio.h>
void main()
{
float a,b,c,t;
scanf("%f,%f,%f",&a,&b,&c);
if(a>b)
{
t=a;
a=b;
b=t;
}
if(a>c)
{
t=a;
a=c;
c=t;
}
if(b>c)
{
t=b;
b=c;
c=t;
}
printf("%5.2f,%5.2f,%5.2f\n",a,b,c);
}


Output:
1
 0.00,  nan, 0.00


Create a new paste based on this one


Comments: