这是俺写的,看看有啥问题不- static void Main(string[] args)
- {
- int[] n = { 12, 645, 354, 123, 456, 324 };//这里直接给予了一个数组
- int result = Max(n);
- Console.WriteLine("最大值为{0}",result);
- Console.ReadKey();
- }
- public static int Max(int[] numbers)//定义了一个求最大值的方法
- {
- int Max = 0;
- for (int i = 0; i < numbers.Length; i++)//循环比较最大值,然后返回最大值
- {
- if (numbers[i] > Max)
- {
- Max = numbers[i];
- }
- }
- return Max;
-
- }
复制代码 |