1.定义数组存储价格,并利用循环输入。
2.定义变量min保存当前的最低价。
将min和数组中的其余元素依次比较。
int [] money = new int [4];
int temp=0;
Console.WriteLine("请输入四家店各自的价格");
for (int i = 0; i < money.Length; i++)
{
Console.Write("请输入第{0}家的价格",i+1);
money[i] = Convert.ToInt32(Console .ReadLine ());
}
for (int a = 1; a < money.Length; a++)
{
if (money [a] <= money[a-1])
{
temp=a;
}
}
Console.WriteLine("最低价为{0}",money[temp]);
Console.ReadKey();