单选题 难度 1
只加第 2 行。
下面代码的输出是( )。 int a[2][3] = {{1,2,3},{4,5,7}}; int s = 0; for (int j = 0; j < 3; j++) s += a[1][j]; cout << s << endl;