Mips - 打印游戏板

发布于 2024-11-02 17:39:19 字数 470 浏览 4 评论 0原文

大家好 我有一个 mips 作业,应该是一个翻转纸牌游戏, 所以我应该打印一个 4x13 的板,

* * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * *

每个 * 代表一张卡片 因此,当我输入行和列时,它应该翻转该位置的卡片,例如

* * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * *
* * * * * * 5A * * * * * * * * *
* * * * * * * * * * * * * * * *

我可以使用 .ascii 打印板,但是每次选择位置时如何翻转卡片 如何在每次入仓时翻转星星并打印值?

Hello all
I have a mips assignment which is supposed to be a flipping cards game,
so I am supposed to print a board which is 4x13

* * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * *

each * represents a card
so when I enter the row and column it should flip the card which is in that position for example

* * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * *
* * * * * * 5A * * * * * * * * *
* * * * * * * * * * * * * * * *

I can print the board using .ascii, but how am I going to flip a card every time I choose a position
how to flip the star and print the value every time I enter a position?

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

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

发布评论

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

评论(1

水晶透心 2024-11-09 17:39:19

您可以用 sb 覆盖 .ascii 数据中的星星(根据您的示例,覆盖 2 次),然后重新打印您的数据。

You can overwrite your stars in your .ascii data with sb (2 times, according to your example), then just reprint your data.

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