gpt4 book ai didi

c - 错误 : expression result unused [-Werror, -Wunused-value] 矩阵 [i,z] = h,v;我不明白?

转载 作者:行者123 更新时间:2023-11-30 19:11:17 25 4
gpt4 key购买 nike

我在下一个循环中使用了数组的 i 值,那么我做错了什么?另一个错误说TicTac.c:27:15:错误:数组类型“int [3]”不可分配 矩阵[i,z] = h,v;非常感谢您,如果我以错误的方式提出问题,我很抱歉。这是我在这里的第一个问题。非常感谢!

{     /*The tic tac board*/
int Matrix[3][3] = { {6,6,6},
{6,6,6},
{6,6,6} };

/*asks user for input and gives value into the array*/

for (int z = 0; z <= 2;++z) {

for ( int i = 0; i <= 2; ++i)
{
printf("Give me your choice in the horizontal layer");
int h = GetInt();
printf("Give me your choice in the verticle layer");
int v = GetInt();


Matrix[i,z] = h,v;
/*demonstrates the board*/
for(int o = 0; o <= 2; o++)
{

for(int j = 0; j <= 2; j++)
{
printf("%d ", Matrix[o][j]);
printf("\n");
}
}
}



}

最佳答案

不知道你是否可以使用

Matrix[i,z] = h,v;

您可能想使用类似的东西

Matrix[i][z]=h;

这可能是你的问题。

除此之外,请了解如何在 C 或 C++ 中使用多维数组。

关于c - 错误 : expression result unused [-Werror, -Wunused-value] 矩阵 [i,z] = h,v;我不明白?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40413065/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com