问答详情
源自:6-1 练习题目

想知道错在哪儿

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

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

int max=0; 

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

  {

     if(score[i]>max)     

     {       

        max = score[i];         

         j=i;      

     }   

 } 

Console.Write("分数最高的是{0},分数是{1}", names[j],max );

提问者:入江直树 2016-08-02 16:35

个回答

  • 森林zong火犯3572658
    2016-08-02 21:07:08

    没有i=j=0这种写法,分开写