You can just create a 2D array to store your RGB colour values: int colourArray[5][3] = { {255,0,0}, {0,255,0}, {0,0,255}, {255,165,0}, ...
確定! 回上一頁