按给定行数构造一个幻方

发布于 2024-08-11 01:12:05 字数 280 浏览 1 评论 0原文

我正在尝试用简单的 PHP 构建一个应用程序,但可以用任何语言来完成。

我希望用户输入行数,输出将是它的幻方。

例如,对于 $rows=3:

8-1-6
3-5-7
4-9-2

请注意,在每一行、列、对角线上,数字之和等于 15。

有一种方法可以用奇数行来构造此值。我不想那样。我希望程序能够实际计算数字、行总和、列总和和对角线总和,无论输入是奇数还是偶数。

您知道如何去做吗?现在我正淹没在循环的海洋中。 帮助!

I'm trying to build an application in simple PHP but could be done in any language.

I want the user to enter number of rows and the output will be the magic square of it.

For example, for $rows=3:

8-1-6
3-5-7
4-9-2

Notice that in every row,column,diagonal the sum of numbers is equal to 15.

There is a method for constructing this with an odd number of rows. I DONT want that. I want the program to ACTUALLY calculate numbers, row-sums, column-sums and diagonal-sums, doesn't matter if the input is odd or even.

Do you have any idea how to go about doing this? Right now i'm drowning in a sea of loops.
HELP!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云醉月微眠 2024-08-18 01:12:05

抱歉,经过进一步搜索,我发现了一个 JAVA 小程序可以做到这一点:
链接文本

思考这个看似简单的算法背后的广泛机制是非常甜蜜的。

Sorry, after a further search I found a JAVA applet that does it:
link text

It's pretty sweet thinking about the extensive mechanism working behind this seemingly simple algorithm.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文