Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你好,我想编写一个程序,显示二维数组的逐行和逐列相加。
例如
如果我们输入 1 1 2 3 结果应该是 1 1 2 2 3 5 3 4 7
因为这闻起来像家庭作业,即使你没有表现出任何解决问题的努力,我也会给你一些基本的步骤。
array
big_array
array[row][column]
big_array[row][last]
big_array[last][column]