gpt4 book ai didi

c - 打印二维数组会打印垃圾(Magic Square)

转载 作者:行者123 更新时间:2023-11-30 14:23:02 29 4
gpt4 key购买 nike

我正在尝试编写一个 C 程序来打印幻方。但是,我在构建广场时遇到错误。任何人都可以帮助找出导致这些错误的原因吗?以下是我的相关代码和我的输出:

代码:

  int main(void) {
int size = 0;
int r, c;
int i = 1;

printf("What is the size of the square: ");
scanf("%d", &size);

int square[size][size];
int range = size * size;
r = 0;
c = size/2;

do {
square[r][c] = i;

i++;
r--;
c++;

if ((r == -1) && (c == size)) {
r = r + 2;
c--;
} else if (r == -1) {
r = size - 1;
} else if (c == size) {
c = 0;
} else if (square[r][c] != 0) {
r = r + 2;
c--;
}
} while (i < range);

for (r = 0; r < size; r++) {
for (c = 0; c < size; c++) {
printf("%d \t", square[r][c]);
}
printf("\n");
}

return 0;
}

输出:

What is the size of the square: 3
-4196312 1 0
3 -4196352 -13339222
4 -13360148 2

最佳答案

函数作用域中的所有变量均未初始化为零。相反,它们被分配一个随机值。

使用这个:

int square[size][size] = {0};

您还可以使用 memsetcalloc,但这是最简单的。

<小时/>

更正:

列表初始值设定项不适用于可变大小数组。使用 memset 代替:

int square[size][size];
memset(square, 0, size * size * sizeof(int));
<小时/>

编辑:

完整的工作代码

#include <stdio.h>
#include <string.h>

int main(void) {
int size = 0;
int r, c;
int i = 1;

printf("What is the size of the square: ");
scanf("%d", &size);

int square[size][size];
memset(square, 0, size * size * sizeof(int));
int range = size * size;
r = 0;
c = size/2;

do {
square[r][c] = i;

i++;
r--;
c++;

if ((r == -1) && (c == size)) {
r = r + 2;
c--;
} else if (r == -1) {
r = size - 1;
} else if (c == size) {
c = 0;
} else if (square[r][c] != 0) {
r = r + 2;
c--;
}
} while (i < range);

for (r = 0; r < size; r++) {
for (c = 0; c < size; c++) {
printf("%d \t", square[r][c]);
}
printf("\n");
}

return 0;
}

关于c - 打印二维数组会打印垃圾(Magic Square),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13216309/

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