求数组中的最大值和最大值的索引

 前天将数据的一些遍历方法共享出来了,今天还是接着共享有关数组的吧.


using System;
using System.Collections.Generic;
using System.Text;

namespace ljun_CSharp_Study
{
    class ArrayMaxIndex
    {
        ///


        /// 求数组中的最大值和最大值的索引
        ///

        /// 传入的数组
        /// 要求的最大值的索引
        /// 数组中的最大值
        static int MaxIndex(int[] m_Array, out int m_Index)
        {
            m_Index = 0;
            int m_Max = m_Array[0];

            for (int i = 0; i < m_Array.Length; i++)
            {
                if (m_Array[i] > m_Max)
                {
                    m_Max = m_Array[i];
                    m_Index = i;
                }
            }

            return m_Max;
        }

        static void Main(string[] args)
        {
            int[] myArray = new int[5] { 5, 8, 90, 99, 23 };
            int maxIndex;

            Console.WriteLine("数组中的最大值为:{0}",MaxIndex(myArray,out maxIndex));
            Console.WriteLine("数组中的最大值是第{0}号元素",maxIndex+1);

            Console.ReadLine();
        }
    }
}

 

你可能感兴趣的:(C#)