1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
#include <iostream>
#include "maklib.h"

using namespace std;

int main()
{
    long int wynik = 0;
    long int tymcz = 0;
    int rozmiar = Size();
    for (int i = 1; i <= rozmiar; i++)
    {
        //cout << ElementAt(i) << endl;
        tymcz += ElementAt(i);
        if (tymcz < 0) tymcz = 0;
        if (tymcz > wynik) wynik = tymcz;
    }
    cout << wynik << endl;
}