急。。C#对三个数(从键盘输入三个数)如何排序?从小到大
用C#语言编写一个最简易的程序,最好用到for语句,对三个数进行从小到大排序,要求从键盘接受三个整数。...
用C#语言编写一个最简易的程序,最好用到for语句,对三个数进行从小到大排序,要求从键盘接受三个整数。
展开
2个回答
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Temp
{
class Program
{
static void Main(string[] args)
{
int[] a = new int[3];//用数组
//输入数据
for (int i = 0; i < a.Length; i++)
{
Console.WriteLine("输入第{0}个数字", i + 1);
a[i] = Int32.Parse(Console.ReadLine());
}
//比较排序
for (int i = 0; i < a.Length-1; i++)
{
if (a[i] > a[i + 1])
{
int temp = a[i];
a[i] = a[i + 1];
a[i + 1] = temp;
}
}
//输出结果
for (int i = 0; i < a.Length; i++)
{
Console.Write(a[i] + " ");
}
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Temp
{
class Program
{
static void Main(string[] args)
{
int[] a = new int[3];//用数组
//输入数据
for (int i = 0; i < a.Length; i++)
{
Console.WriteLine("输入第{0}个数字", i + 1);
a[i] = Int32.Parse(Console.ReadLine());
}
//比较排序
for (int i = 0; i < a.Length-1; i++)
{
if (a[i] > a[i + 1])
{
int temp = a[i];
a[i] = a[i + 1];
a[i + 1] = temp;
}
}
//输出结果
for (int i = 0; i < a.Length; i++)
{
Console.Write(a[i] + " ");
}
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询