2018-12-19

2018-12-19  本文已影响0人  柏建春

#代码
using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

namespace ConsoleApplication1

{

    class Program

    {

        static void Main(string[] args)

        {

            int index = 0;

            int[] points=new int[8]{18,25,7,36,13,2,89,63};

            int min = points[0];

            for (int i = 0; i < points.Length; i++)

            {

                if (min > points[i])

                {

                    min = points[i];

                    index = i;

                }

            }

            Console.WriteLine("最低积分为{0},其下标为{1}。", min, index);

            Console.ReadKey();

        }

    }

}

#效果

上一篇下一篇

猜你喜欢

热点阅读