C ++の初心者、私は2つの配列を持っています。1 は String、もう 1 つは 2D 配列 (int) です。アーティストをスコアに割り当てるにはどうすればよいですか??
int Artistlist()
{
const int A1_SIZE = 5, A2_ROWSIZE =5, A2_COLSIZE =10;
string Artist[A1_SIZE]={ "Degas", "Holbien", "Monet", "Matisse", "Valesquez" };
int Scores[A2_ROWSIZE][A2_COLSIZE] =
{
{5,5,6,8,4,6,8,8,8,10},
{8,8,8,8,8,8,8,8,8,8},
{10,10,10,10,10,10,10,10,10,10},
{5,0,0,0,0,0,0,0,0,0},
{5,6,8,10,4,0,0,0,0,0}
};
}