为了账号安全,请及时绑定邮箱和手机立即绑定

会了 自己附个正确答案

会了 自己附个正确答案

C#
慕尼黑0172299 2015-10-14 15:47:31
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication4{    class Program    {        static void Main(string[] args)        {            int[] score = new int[8] { 89, 90, 98, 56, 60, 91, 93, 85 };            int y = 0;            string[] name = new string[8] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };            for (int x = 1; x <= score.Length; x++)            {                if (score[x] > score[0])                {                    y = x;                }                else continue;            }            Console.WriteLine("分数最高的是{0},分数是{1}", name[y], score[y]);        }    }}
查看完整描述

1 回答

?
慕尼黑0172299

TA贡献2条经验 获得超0个赞

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;


namespace ConsoleApplication4

{

    class Program

    {

        static void Main(string[] args)

        {

            int[] score = new int[8] { 89, 90, 98, 56, 60, 91, 93, 85 };

            int y = 0;

            string[] name = new string[8] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };

            for (int x = 0; x < score.Length; x++)

            {

                if (score[x] > score[y])

                {

                    y = x;

                }

              //  else continue;

            }

            Console.WriteLine("分数最高的是"+name[y]+"分数是"+score[y]);

        }

    }

}


查看完整回答
反对 回复 2015-10-14
  • 1 回答
  • 0 关注
  • 1137 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信