有人可以幫我做到這一點 我想只填寫第一行然後是最後一行 我怎麼能這樣做這就是我所擁有的到目前爲止:C++二維數組填充只有頂行然後底行
const int rows = 2;
const int columns = 6;
int grid[rows][columns] = { 0 }; /* 0 0 0 0 0 0
0 0 0 0 0 0
*/
for (int i = 0; i < rows; i++)
{
for (int j = 0; j < columns; j++)
{
grid[i][j] = 1; //fill the top row only
/* Output:
1 1 1 1 1 1
0 0 0 0 0 0
*/
}
}
for (int i = 0; i < rows; i++)
{
for (int j = 0; j < columns; j++)
{
grid[i][j] = 2; //fill the bottom row only
/* Output:
1 1 1 1 1 1
2 2 2 2 2 2
*/
}
}
在這種情況下:可以說,我們不知道陣列請,如果有人可以幫助
對(INT J = 0;Ĵ<列; J ++){ 網格 [0] [j] = 1; grid [row-1] [j] = 1; } – user1438832