四家店价格
2019-01-07 本文已影响0人
BlingBling007
try
{
int[] money = new int[4];
Console.WriteLine("请输入4家店的价格");
for (int i = 0; i < money.Length; i++)
{
Console.Write("第{0}家店的价格:", i + 1);
money[i] = Convert.ToInt32(Console.ReadLine());
}
Array.Sort(money);
Console.WriteLine("最低价格是:{0}",money[0]);
}
catch
{
Console.WriteLine("你输入的程序错误");
}
Console.ReadKey();