gpt4 book ai didi

c# - 数组中的最大和最小数

转载 作者:可可西里 更新时间:2023-11-01 08:14:03 29 4
gpt4 key购买 nike

这非常有效...但是当我使用 foreach 而不是 for 时,这不起作用。我无法理解 forforeach 是一样的。

namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
int[] array = new int[10];
Console.WriteLine("enter the array elements to b sorted");
for(int i=0;i<10;i++)
{
array[i] = Convert.ToInt32(Console.ReadLine());
}
int smallest = array[0];
for(int i=0;i<10;i++)

{
if(array[i]<smallest)
{
smallest=array[i];

}
}
int largest = array[9];
for(int i=0;i<10;i++)
{

if (array[i] > largest)
{
largest = array[i];

}
}
Console.WriteLine("the smallest no is {0}", smallest);
Console.WriteLine("the largest no is {0}", largest);
Console.Read();


}
}
}

最佳答案

你为什么不用这个?

int[] array = { 12, 56, 89, 65, 61, 36, 45, 23 };
int max = array.Max();
int min = array.Min();

关于c# - 数组中的最大和最小数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4906725/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com