Input
Output
#include <iostream> using namespace std; int main(){ // 3 rows & 2 columns int score[3][2] = {{100, 221}, {59, 54},{10, 21}}; for(int i=0; i<3; i++){ for(int j=0; j<2; j++){ cout << " Element[" << i << "][" << j << "]= " << score[i][j] << endl; } } return 0; }