class 3配列中の最大値を求める(ユニットテスト)

2849 ワード

1.問題:
int Largest(int list[], int length)
{
    int i,max;
    for(i = 0; i < (length – 1); i ++ )
    {
          if(list[i] > max) 
          {
              max=list[i];
            }
     }
     return max;
}

このセグメントプログラムは正しいプログラムを作成して配列の最大値を求める.
#include 
using namespace std;

int Largest(int list[],int length)
{
    int i,max = list[0];
    for(i = 0; i < length ; i++)
    {
        ;
        if (list[i] > max)
        {
            max = list[i];
        }
    }
    cout << max << endl;
    return max;
}
void main()
{
    int arr[5] = {-1,0,8,7,4};
    Largest(arr,5);
}

テスト中に発生したエラーは次のとおりです.
i < (length – 1)---i < length;

max ,---max = list[0];

:1,2,3,4,5---- 4
 length ;
0,-4,3,2,1---- 1
 max ...
 : , 。 20%, 80% ; 、 、 、 。

転載先:https://www.cnblogs.com/mengxiangjialzh/p/4374987.html