Hi suppose I have an array of v1[] = {1, 3, 4, 5} and v2[] = {5, 3, 4, 6}. I want to compare the elements of v1 and v2 and, get the largest value as an output (optimal solution). if V1 and V2 are the length of the array
I tried
for(i = 0; i <=n; i++) //for items of an array
for( j = V1; i >= 0; i--) //for items in v1
for( k = V2; j >= 0; j--) //for itemns in v2
if(v1[i] <= j && v2[i] <= k)
int V1 = v1[i];
int V2 = v2[i];
But does not work correctly. Please help.

int V1 = v1[i];is in yourifconditional- the lineint V2 = v2[i];is outside it – David Robinson Sep 14 '12 at 22:10max()method which returns the maximum element of a single array. Then you can call this method with both arrays while only writing the code once to find the maximum value. – Code-Guru Sep 14 '12 at 22:35