0

在python中我会喜欢

grid = [['a','b','c'],['d','e','f'],['g','h','i']]
another_grid = [['a','a','a'],['d','e','f'],['g','h','i']]
another_grid[0][1] = grid[1][1]

上面的代码会将'a'更改为'e'。如何在 c 中做到这一点?

4

1 回答 1

1

它是一样的,甚至语法是相似的:

char grid[3][3] = { { 'a', 'b', 'c' }, { 'd', 'e', 'f' }, { 'g', 'h', 'i' } };
char another[3][3] = { { 'a', 'a', 'a' }, { 'd', 'e', 'f' }, { 'g', 'h', 'i' } };
another[0][1] = grid[1][1];
于 2012-12-16T17:25:45.030 回答