gpt4 book ai didi

c - 我怎样才能在不使用数组的情况下重写这段代码?

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

#include <stdio.h>

main()
{
int x, y;
scanf("%d", &x);

int a[x][x];
int i, j, low = 0, top = x - 1, n = 1;
for (i = 0; i < x / 2; i++, low++, top--)
{
for (j = low; j <= top; j++, n++)
a[i][j] = n;
for (j = low + 1; j <= top; j++, n++)
a[j][top] = n;
for (j = top - 1; j >= low; j--, n++)
a[top][j] = n;
for (j = top - 1; j > low; j--, n++)
a[j][low] = n;
}
for (i = 0; i < x; i++)
{

for (j = 0; j < x; j++)
{
printf("%d", a[i][j]);
}
printf("\n");
}
}

我想编写一个数字模式,这是代码,但我想在不使用数组的情况下编写它。如何在不使用任何数组的情况下重写它?当然x可以是偶数也可以是奇数。感谢你的帮助! ![example for output ] 1

最佳答案

#include <stdio.h>
int get(int x, int y, int lt, int n)
{
if(x == 0)
return lt+y;
else if(y == 0)
return lt+4*(n-1)-x;
else if(y == n-1)
return lt+n+x-1;
else if(x == n-1)
return lt+3*(n-1)-y;
else
return get(x-1, y-1, lt+4*(n-1), n-2);
}
int main(void)
{
int n, i, j;
scanf("%d", &n);
for(i = 0; i < n; ++i) {
for(j = 0; j < n; ++j)
printf("%2d ", get(i, j, 1, n));
putchar('\n');
}
return 0;
}

关于c - 我怎样才能在不使用数组的情况下重写这段代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47172933/

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