问答详情
源自:6-12 综合练习

这个为什么不行?

int MAX(int score[])

{

    int i ,max;

    max=score[0];

    for(i=0;i<10;i++)

    {

        if(score[i]>max)

        {

        max=score[i];

       

        }

        return max;

    }

    

     printf("max=%d\n",max); 

    

}


提问者:慕前端6341039 2019-02-20 20:29

个回答

  • Majesty_x
    2019-05-10 13:20:39

    返回位置错了,在for外才对