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

四处报错都是 "max"does not exist in the current context,

           string[] a = new string[] { "一", "二", "三", "四", "五", "六" };
            int[] b = new int[] { 80, 90, 98, 89, 86, 68 };
            int k = 0;
            max= b[0];
            for(int i=0;i<b.Length;i++)
            {
                if(b[i]>max)
                {
                    max= b[i];
                    k = i;
                }
            }
            Console.Write("得分最高人的名字是" + a[k] + ",  分数是" + max);

正在回答

3 回答

对呀,因为你没有定义max呀,你的max是直接写的,你没有定义,定位为:int  max

0 回复 有任何疑惑可以回复我~

没有定义max

1 回复 有任何疑惑可以回复我~

未定义max

int max = b[0];

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

四处报错都是 "max"does not exist in the current context,

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信