logo

Crowdly

Browser

Add to Chrome

執行下列 C/C++ 程式片段的結果為何? int a[4][4], i, j;a[0][0] = 0; for (i = 1; i< 4; i++)...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

執行下列 C/C++ 程式片段的結果為何?

int a[4][4], i, j;a[0][0] = 0;

for (i = 1; i< 4; i++)

       for (j = 1; j< 4; j++)

             a[i][j] = a[i-1][j-1] + (i + j) * 2;

cout << a[3][3];

0%
0%
0%
0%
More questions like this

Want instant access to all verified answers on 103.226.213.97?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome