Advertisement
noshin98

uva 11059

Jul 10th, 2016
347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.56 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     long long  t,n,i,j,a[50],ans,max;
  5.     t=1;
  6.     while(scanf("%lld",&n)!=EOF)
  7.     {
  8.  
  9.         max=0;
  10.         for(i=1;i<=n;i++)
  11.  
  12.  
  13.             scanf("%lld",&a[i]);
  14.             for(i=1;i<=n;i++)
  15.             {
  16.                 ans=1;
  17.  
  18.             for(j=i;j<=n;j++)
  19.             {
  20.  
  21.  
  22.                      ans=ans*a[j];
  23.  
  24.  
  25.  
  26.             if(max<ans)
  27.                 max=ans;
  28.             }
  29.             }
  30.  
  31.  
  32.          printf("Case #%lld: The maximum product is %lld.\n\n",t++,max);
  33.  
  34.  
  35.  
  36.  
  37.     }
  38.     return 0;
  39.  
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement