告诉俄思路、
还有中间的处理怎么写吧、
告诉俄思路、
还有中间的处理怎么写吧、
double a, b, c,temp;
Console.WriteLine("请输入个实数");
a = double.Parse(Console.ReadLine());
b = double.Parse(Console.ReadLine());
c = double.Parse(Console.ReadLine());
if (a < b)
{
temp = a;
a = b;
b = temp;
}
if (a < c)
{
temp = a;
a = c;
c = temp;
}
if (b < c)
{
temp = b;
b = c;
c = temp;
}
Console.WriteLine("{0},{1},{2}", a, b, c);
思路是这样
这个代码是在C#中