在 Assembly 中将 ascii 字符转换为十进制,以便与 WriteConsoleA 和 readConsoleA 一起使用

发布于 2024-11-03 21:53:07 字数 293 浏览 0 评论 0原文

我正陷入困境。我需要从用户输入数字,然后对输入进行算术计算。我现在只是一个初学者,到目前为止,我还没有使用过任何 IO,除了在一个使用 WriteConsoleA 和 ReadConsoleA 询问用户名称并打印输出的程序中。我在谷歌上找不到任何关于如何将 ascii 字符转换为小数以进行输入以及如何将小数转换为 ascii 以进行输出的帮助。我更愿意在使用任何库函数之前手动执行此操作。我不知道如何将单个字符转换为字符串,反之亦然。这是怎么做到的? 是的,如果您在答案中编写代码,如果可能的话,请使用 masm 语法,因为我不熟悉其他汇编器的语法。 谢谢!! 德夫吉特

I am in a fix. I need to input numbers from the user and then perform arithmetic calculations on the input. I'm just a beginner now and till now I've not used any IO, except in a program which asks the user for a name and prints an output, using WriteConsoleA and ReadConsoleA. I couldn't find any help on google, on how to convert ascii characters to decimals for input and how to convert decimals to ascii for output. I'd prefer to do this manually before using any of the library functions. I can't figure how to convert a single character into a string and vice versa. How is this done?
And yeah, if you write code in the answers, if, possible, use masm syntax as i am not familiar with the other assemblers' syntax.
Thanks!!
Devjeet

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

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

发布评论

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

评论(1

忱杏 2024-11-10 21:53:07

如果 al 上有像 31h 这样的小数,则只需在每个数字上添加 30h 即可将它们转换为 ASCII 字符,例如 (AL = 31h):

mov cl,al
shr al, 4 // now al = 03
add al,30h // now al = 33h, which if you output is the ASCII character '3'

现在,您可以恢复 al 并左移 4 以获得下一个“1”并再次添加30h。我希望这能说明这一点:)

If you have a decimal like 31h on al, you can just add 30h to each one to convert them to ASCII characters, like (AL = 31h):

mov cl,al
shr al, 4 // now al = 03
add al,30h // now al = 33h, which if you output is the ASCII character '3'

Now, you can restore al and shift left by 4 to get the next '1' and again add 30h. I hope this illustrates the point :)

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