Mips - 打印游戏板
大家好 我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以用 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.