当前位置: > C#怎么比较三个数的大小并按从大到小的顺序输出?要用if语句....
题目
C#怎么比较三个数的大小并按从大到小的顺序输出?要用if语句.

提问时间:2021-01-19

答案
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入三个数:");
double a = Convert.ToDouble (Console .ReadLine ());
double b = Convert.ToDouble(Console.ReadLine());
double c = Convert.ToDouble(Console.ReadLine());
double ? max=null ;
double ? middle =null ;
double ? min=null ;
if (a >= b && b >= c)
{
max = a;
middle = b;
min = c;
}
else
if(a>=c&&c>=b)
{
max = a;
middle = c;
min = b;



}
else
if (b >= a && a >= c)
{
max = b;
middle = a;
min = c;

}
else
if (b >= c && c >= a)
{
max = b;
middle = c;
min = a;

}
else
if (c>= a && a >= b)
{
max = c;
middle = a;
min = b;

}
else
if (c >= b && b >= a)
{
max = c;
middle = b;
min = a;

}
Console.WriteLine ("排序后的序列为(从大到小):{0}{1}{2}{3}{4}",max ,",",middle,"," ,min);
}
}
}
举一反三
已知函数f(x)=x,g(x)=alnx,a∈R.若曲线y=f(x)与曲线y=g(x)相交,且在交点处有相同的切线,求a的值和该切线方程.
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
版权所有 CopyRight © 2012-2019 超级试练试题库 All Rights Reserved.