Answer to Question #11750 in C++ for Irwin

Question #11750
You are given a 6x8 (6 rows, 8 columns) array of integers, x , already initialized and three integer variables: max , i and j . Write the necessary code so that max will have the largest value in the array x .
1
Expert's answer
2012-07-13T07:23:41-0400
max=x[0][0];
for (i=0; i<6; i++){
for (j=0; j<8;
j++){
if (x[i][j]>max){

max=x[i][j];
}
}
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS