-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAmcat-automata-question7.c
91 lines (39 loc) · 1.11 KB
/
Amcat-automata-question7.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
* C Program to Find the Sum of Contiguous Subarray within a
* 1 - D Array of Numbers which has the Largest Sum
*/
#include<stdio.h>
int main()
{
int size,m=0,l=0;
printf("Type the length of the array\n");
scanf("%d",&size);
int array[size];
printf("type the elements of the array\n");
for(int i=0;i<size;i++)
{
scanf("%d",&array[i]);
}
int largest=array[0];
for(int i=0;i<size;i++)
{
int sum=0;
for(int j=i;j<size;j++)
{
sum=sum+array[j];
if(sum>largest)
{
m=i;l=j;
largest=sum;
}
}
}
printf("\n The largest contigous subarray is");
for(int z=m;z<=l;z++)
{
printf(" %d ",array[z]);
}
printf("\n The sum of the largest contigous subarray is");
printf(" %d",largest);
return 0;
}