为什么Masm32只给出1到100个加法和减法运算的结果,而且我得到的答案错了?

时间:2015-06-13 01:56:58

标签: assembly masm32

我是汇编语言的新手。我现在制作这个代码并运行它没有任何错误,除了它只会给出1 - 100的结果,这是我的代码。

这是一个简单的数学运算,即加法和减法。 我尝试分析代码可能在num1 db 10 dup (?)我尝试将10改为100但仍然无法正常工作。我错过了什么吗?

.386
.model flat, stdcall
option casemap :none
include \masm32\include\masm32rt.inc

.data
    msgEC db "Choose Operation", 00ah, 0
    msgAdd db "Addition 1", 00ah, 0
    msgSub db "Subtraction 2", 00ah, 0
    msgEx db "Exit 3", 00ah, 0
    msg db "Addition", 00ah, 0
    msgSub2 db "Subtraction", 00ah, 0
    msg1 db "Enter 1st Number:", 00ah, 0
    msg2 db "Enter 2nd Number:", 00ah, 0
    msg3 db "Sum is:", 00ah, 0
    msgdf db "Diff is:", 00ah, 0
    endl db 00ah, 0
    msg4 db "Try Again[1/0]:", 0
.data?

    num1 db 10 dup (?)
    num2 db 10 dup (?)
    res sdword ?
    choice db 10 dup (?)
    choice2 db 10 dup (?)

.code
start:
    invoke StdOut, addr msgAdd
    invoke StdOut, addr msgSub 
    invoke StdOut, addr msgEx
    invoke StdOut, addr msgEC
    invoke StdIn, addr choice2, 10
    mov[choice2 + eax-3], 0
    invoke StripLF, addr choice2
    invoke atodw, addr choice2

    .if eax == 1
    jmp _addition
    .elseif eax == 2
    jmp _subtraction
    .elseif eax == 3 || eax > 3
    jmp _exit
    .endif


_addition:

    invoke ClearScreen
    invoke StdOut, addr msg
    invoke StdOut, addr msg1
    invoke StdIn, addr num1, 10
    mov[num1 + eax-3], 0
    invoke StripLF, addr num1
    invoke atodw, addr num1
    mov ebx, eax

    invoke StdOut, addr msg2
    invoke StdIn, addr num2, 10
    mov[num2 + eax-3], 0
    invoke StripLF, addr num2
    invoke atodw, addr num2
    add ebx, eax   

    invoke dwtoa, ebx, addr res
    invoke StdOut, addr msg3
    invoke StdOut, addr res
    invoke StdOut, addr endl

    invoke StdOut, addr msg4
    invoke StdIn, addr choice, 10
    mov[choice + eax-3], 0
    invoke StripLF, addr choice
    invoke atodw, addr choice

    .if eax == 1
    jmp _addition
    .else
    .endif

_subtraction:

    invoke ClearScreen
    invoke StdOut, addr msgSub2
    invoke StdOut, addr msg1
    invoke StdIn, addr num1, 100
    mov[num1 + eax-3], 0
    invoke StripLF, addr num1
    invoke atodw, addr num1
    mov ebx, eax

    invoke StdOut, addr msg2
    invoke StdIn, addr num2, 100
    mov[num2 + eax-3], 0
    invoke StripLF, addr num2
    invoke atodw, addr num2
    sub ebx, eax   

    invoke dwtoa, ebx, addr res
    invoke StdOut, addr msgdf
    invoke StdOut, addr res
    invoke StdOut, addr endl

    invoke StdOut, addr msg4
    invoke StdIn, addr choice, 10
    mov[choice + eax-3], 0
    invoke StripLF, addr choice
    invoke atodw, addr choice

    .if eax == 1
    jmp _subtraction
    .else 
    .endif

_exit:

invoke ExitProcess, 0

end start

编辑:示例输出是如果我添加100 + 5它显示错误的结果是5但是如果我添加较低的数字如90 + 5它输出正确的结果95。

1 个答案:

答案 0 :(得分:0)

您的代码中的所有这些操作都是错误的:

mov[num1 + eax-3], 0

StdIn返回读取的字符数,不包括NUL终止符。因此,如果您输入100eax将为3,那么您将第一个字节设置为0,从而使num1为空字符串。更糟糕的是,如果您输入一位数或两位数字,则您将在num1之外撰写,因为eax-3将为负数。

幸运的是StdIn将为您删除CRLF和NUL终止字符串。因此,您只需删除所有mov[foo + eax-3], 0条指令以及invoke StripLF, addr foo次来电即可。