• c# 获取数组中最大数的值


    求数组中最大的数的值:
    1、数组的max函数:

     1    class Program
     2     {
     3         static void Main(string[] args)
     4         {
     5             int[] array = {1,3,5,2,4,6,7,9,0,8};
     6            int max= GetMax(array);
     7             Console.WriteLine("数组中最大的值是{0}",max);
     8             Console.ReadKey();
     9         }
    10            private static int GetMax(int[] array)
    11          {
    12            return array.Max();
    13          }
    14 }
    View Code

    2、分支语句:

     1  class Program
     2     {
     3         static void Main(string[] args)
     4         {
     5             int[] array = {1,3,5,2,4,6,7,9,0,8};
     6            int max= GetMax(array);
     7             Console.WriteLine("数组中最大的值是{0}",max);
     8             Console.ReadKey();
     9         }
    10         /// <summary>
    11         /// 数组中最大的值
    12         /// </summary>
    13         /// <param name="array"></param>
    14         /// <returns></returns>
    15         private static int GetMax(int[] array)
    16         {
    17             int max = 0;
    18             for (int i = 0; i <array.Length; i++)
    19             {
    20                 max = max > array[i] ? max : array[i];
    21 
    22             }
    23             return max;
    24         }
    25     }
    View Code

    3、三元运算:

     1  class Program
     2     {
     3         static void Main(string[] args)
     4         {
     5             int[] array = {1,3,5,2,4,6,7,9,0,8};
     6            int max= GetMax(array);
     7             Console.WriteLine("数组中最大的值是{0}",max);
     8             Console.ReadKey();
     9         }
    10         /// <summary>
    11         /// 数组中最大的值
    12         /// </summary>
    13         /// <param name="array"></param>
    14         /// <returns></returns>
    15         private static int GetMax(int[] array)
    16         {
    17             int max = 0;
    18             for (int i = 0; i <array.Length; i++)
    19             {
    20                 max = max > array[i] ? max : array[i];
    21 
    22             }
    23             return max;
    24         }
    25     }
    View Code
  • 相关阅读:
    xfce4-windowck-plugin的替代品
    git使用Beyond Compare作为diff和merge工具
    Visual Studio设置多个快捷键
    scrapy参数-COOKIES_ENABLED 最权威解释, 帮你避坑
    Linux基础使用
    python 所有的库整理
    Nginx配置详解
    15个常用的javaScript正则表达式
    Redis开发建议
    mysql 同步大量数据小技巧
  • 原文地址:https://www.cnblogs.com/zlp520/p/3551960.html
Copyright © 2020-2023  润新知