int array with for loop : Int array : Data Type C# Examples


C# Examples » Data Type » Int array »

 

int array with for loop









    
using  System;
class  Program  {
        static  int  MaxValue(int[]  intArray)  {
                int  maxVal  =  intArray[0];
                for  (int  i  =  1;  i  <  intArray.Length;  i++)  {
                        if  (intArray[i]  >  maxVal)
                                maxVal  =  intArray[i];
                }
                return  maxVal;
        }

        static  void  Main(string[]  args)  {
                int[]  myArray  =  {  1,  8,  3,  6,  2,  5,  9,  3,  0,  2  };
                int  maxVal  =  MaxValue(myArray);
                Console.WriteLine("The  maximum  value  in  myArray  is  {0}",  maxVal);

        }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Type
» Int array