欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

装饰效果

程序员文章站 2022-06-02 21:24:34
...

装饰效果

装饰效果
装饰效果

#include <iostream>
#include <string>
#include<bits/stdc++.h>
using namespace std;
int a[1001];
int main()
{
    int n;
    cin>>n;
    int MAX=0;
    int i,j,k,t=0;
    for(i=1; i<=n; i++)
    {
        cin>>a[i];
    }

    for(i=1; i<=n; i++)
        for(j=i; j<=n; j++)
        {
            k=j;
            while(k>=i)
            {
                t+=a[k];
                k--;
            }
            MAX=max(MAX,t);
            t=0;
        }
    cout<<MAX;
    return 0;
}

相关标签: 枚举