某班3个小组、每组4名同学的分数存入下面的二维数组 score,则 score[1][2] 的值是多少?
int score[3][4] = { {80, 81, 82, 83}, {90, 91, 92, 93}, {70, 71, 72, 73} };
81
90
92
72