美文网首页
2018-12-19某百货商场当日消费积分最高的8名顾客,他们的

2018-12-19某百货商场当日消费积分最高的8名顾客,他们的

作者: 拾起_518 | 来源:发表于2018-12-19 08:46 被阅读0次

    using System.Text;

    namespace ConsoleApplication3
    {
    class Program
    {
    static void Main(string[] args)
    {
    int min;
    int index = 0;
    int[] points = { 18, 25, 7, 36, 13, 2, 89, 63 };
    for (int i = 0; i <= 7; i++)
    {
    min = points[0];
    if (points[i] < min)
    {
    min = points[1];
    index = i;
    }

            }
            Console.WriteLine("最小值为{0},所在的位置{1}",points [ index ],index+1);
            Console.ReadKey();
    

    相关文章

      网友评论

          本文标题:2018-12-19某百货商场当日消费积分最高的8名顾客,他们的

          本文链接:https://www.haomeiwen.com/subject/gyldkqtx.html