gpt4 book ai didi

c - 超出范围时 undefined variable

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

编写一个程序,让用户​​ throw 五个骰子​​并显示结果​​“以图形方式”​​​在屏幕​上。
该程序应该通过用 5 个 1 之间的数字填充一个数组来模拟五次骰子抛出来开始​ ​和​ ​5.​ ​函数​应该​然后​​通过在屏幕上显示​ ​字符​ ​和计算的函数来“绘制”结果​​总和。
我在第一个函数中收到一条错误消息,它说我还没有定义我在“if”中定义的矩阵。

#include <stdio.h> 
int sumOfDie(int inputArray[], int arraySize);
int drawDie(int inputArray[], int arraySize)
{
int i, row, column=0;

for (i=0; i<arraySize; i++) //determine the graphic number from the random number
{
if (inputArray[i]==1)
{
char matrix [3][4] = {{" "},{" * "},{" "}};
}
if (inputArray[i]==2)
{
char matrix [3][4] = {{"* "},{" "},{" *"}};
}
if (inputArray[i]==3)
{
char matrix [3][4] = {{"* "},{" * "},{" *"}};
}
if (inputArray[i]==4)
{
char matrix [3][4] = {{"* *"},{" "},{"* *"}};
}
if (inputArray[i]==5)
{
char matrix [3][4] = {{"* *"},{" * "},{"* *"}};
}

for (row=0; row<3; row++) //Print out the matrix
{
for(column=0; column<4; column++)
{
printf("%c ", matrix[row][column]);
}
printf("\n");
}
}

}
int sumOfDie(int inputArray[], int arraySize)
{
int i, sum=0;
for (i=0; i<arraySize; i++)
{
sum=sum+inputArray[i];
}
return sum;
}



int main(void)
{
int i;
int inputArry[5];
srand(time(NULL));


for(i=0; i<5; i++)
{
inputArry[i] = rand()%5+1;
}

for (i=0; i<5; i++)
{
printf("Number:%d\n", inputArry[i]);
}

drawDie(inputArry, 5);

sum = sumOfDie(inputArray,5)
printf("The sum of %i + %i + %i + %i + %i = %i", inputArry[0], inputArry[1], inputArry[2], inputArry[3], inputArry[4], sum);

return 0;
}

最佳答案

在函数 drawDie 中,每个名为 matrix 的变量的作用域仅限于声明它们的 if 语句,因此它们以后不能用于打印。

您可以收集表示单个多维数组中的骰子所需的所有字符串,然后打印您需要的字符串。

这是一个可能的实现(考虑六面骰子):

#include <stdio.h>

void print_n_times_in_a_row(const char *str, int n)
{
for ( int i = 0; i < n; ++i )
{
printf(" %s", str);
}
puts("");
}

void draw_dices(int* values, int n)
{
static const char dice_str[][3][8] = {
{{" "},{" * "},{" "}}, // 1
{{" * "},{" "},{" * "}}, // 2
{{" * "},{" * "},{" * "}}, // ...
{{" * * "},{" "},{" * * "}},
{{" * * "},{" * "},{" * * "}},
{{" * * "},{" * * "},{" * * "}} // 6. Just in case...
};

// I'll print all the "dices" in a row
print_n_times_in_a_row("+-------+", n);
for ( int j = 0; j < 3; ++j )
{
for ( int i = 0; i < n; ++i )
{
printf(" |%s|", dice_str[values[i] - 1][j]);
}
puts("");
}
print_n_times_in_a_row("+-------+", n);
}


int main(void)
{
int dices[] = {4, 2, 5, 6, 1, 3};

draw_dices(dices, 6);
}

哪些输出:

 +-------+ +-------+ +-------+ +-------+ +-------+ +-------+ | *   * | | *     | | *   * | | *   * | |       | | *     | |       | |       | |   *   | | *   * | |   *   | |   *   | | *   * | |     * | | *   * | | *   * | |       | |     * | +-------+ +-------+ +-------+ +-------+ +-------+ +-------+

关于c - 超出范围时 undefined variable ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47511716/

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