码迷,mamicode.com
首页 > 其他好文 > 详细

最值、对应索引位置

时间:2018-08-31 13:17:28      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:key   div   9.png   姓名   read   string   http   分享图片   info   

技术分享图片

            String[] names = { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };
            int[] scores = { 89, 90, 98, 56, 60, 91, 93, 85 };
            int max = scores[0];
            int index=0;//记录最大值索引位置
            for (int i = 1; i < scores.Length; i++) {
                if (max < scores[i]) {
                    max = scores[i];
                    index = i;
                }
            }
            Console.WriteLine("最高分为:"+max);
            Console.WriteLine("姓名是:" + names[index]);
            Console.ReadKey();

 

最值、对应索引位置

标签:key   div   9.png   姓名   read   string   http   分享图片   info   

原文地址:https://www.cnblogs.com/xixixing/p/9565188.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!