Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
505 views
in Technique[技术] by (71.8m points)

finding index of max value in an array in C

I want to find index of max value in array in C.

I write this code example:

maks=0;
for(i=0;i< N * N;i++) {
    if(array[i]>maks) {
        maks=(int) array[i];
        k=i;
    }
}

But this isn't work properly.Could you advise me another example please?

Best Regards...

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
k = 0;
max = array[k];

for (i = 0; i < N * N; ++i)
{
    if (array[i] > max)
    {
        max = (int)array[i];
        k = i;
    }
}

Should work !


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...