-4
A
回答
1
我相信,你正在使用此代碼的矩陣前插入0。 How to add a column to the an array C#
此代碼所需要的變化是
//c++; //remove this line
c = c + 2; //add two extra column for adding 0's, One for beginning one for end
int[,] matrix = new int[r, c];
其他的變化是
for (int row = 0; row < r; row++)
{
for (int col = 0; col < c - 1; col++) // reduce column loop by one
{
if (col == 0)
{
matrix[row, col] = 0;
}
else
{
Console.Write("Enter value for matrix[{0},{1}] = ", row, col - 1);
matrix[row, col] = (int)Convert.ToInt32(Console.ReadLine());
}
}
}
1
for (int row = 0; row < r; row++)
{
for (int col = 0; col < c-1; col++)
{
Console.Write("Enter value for matrix[{0},{1}] = ", row, col - 1);
matrix[row, col] = (int)Convert.ToInt32(Console.ReadLine());
}
matrix[row, col] = 0;
}
+0
謝謝你的幫助。 – Johnny
相關問題
- 1. 如何在Bootstrap中的一組行的末尾添加長列?
- 2. 如何將一個參數添加到數組的末尾?
- 3. 我如何在結構數組的末尾添加一個ADDITIONAL結構?在C
- 4. 如何添加一個元素到我的數組的末尾?
- 5. 如何使用「where」參數在數組末尾添加圖片?
- 6. 將單個數組列添加到2d數組的末尾。 Java
- 7. 添加到列表的末尾在LISP
- 8. sed的(1):在一個PHP數組的末尾添加一行
- 9. 如何在OpenCL中將元素添加到數組的末尾?
- 10. 如何在C++文件末尾添加數據?
- 11. 如何將字母添加到字符數組的末尾?
- 12. 在c文件末尾添加信息
- 13. 如何在uint8_t *的末尾添加int?
- 14. 如何在WebView的末尾添加TextView
- 15. 如何將新值添加到數值數組的末尾?
- 16. 在CSV文件末尾添加空列
- 17. 在列表末尾添加節點
- 18. 在c鏈接列表的末尾添加節點c
- 19. android在末尾添加'...'textview
- 20. 使用三重DES解密數據在原始文本末尾添加「\ 0 \ 0 \ 0 \ 0 \ 0 \ 0 \ 0 \ 0」
- 21. C#在末尾增加一個元素的數組
- 22. Prolog - combine2如何防止在末尾添加空列表
- 23. 將列添加到文件的末尾
- 24. C#LINQ追加一個項目到一個數組的末尾
- 25. C-在數組末尾的神祕值
- 26. 如何將一個數字追加到數組的末尾?
- 27. C程序鏈表添加到末尾
- 28. 如何在C#中使用File.Append添加文件末尾的行#
- 29. 如何在文件末尾添加新行。使用只有C
- 30. 如何在參數末尾添加新行月食[編輯]
對於那些誰是關閉的範圍太廣。這裏是他所使用的完整代碼HTTP:/ /stackoverflow.com/a/40761005/2592042 –
謝謝你提到這一點。 – Johnny