7. Draw a picture of array A, showing the values stored in it after execution of
ID: 3832665 • Letter: 7
Question
7. Draw a picture of array A, showing the values stored in it after execution of each code segment below. Use the following data: 0 1 2 3 4 5 6 7 8 9
int A[4][2];
int k,m;
for (int i = 0; i <= 3; i++)
for (int j = 0;j <= 1; j++)
A[i][j]=0;
for (int j=1; j<= 10; j++)
{
cin >> k;
switch (k)
{
case 1;
case 2;
A[k][2-k] =10 * k
break;
case 4;
case 5;
case 6;
case 7;
A[k/2][1] =5 - k
break;
case 3;
A[k-1][k-3] =50
break;
default;
A[3][k/6] = k;
break;
}
}
Explanation / Answer
k=0
A[3][0] = 0
k=1
Nothing
K=2
A[2][0]=20
K=3
A[2][0]=50
k=4,5,6
Nothing
k=7
A[3][1] = -2
k=8
A[3][1]=8
k=9
A[3][1]=9
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.