快交作业了,可我还是编不出这个程序.怎么办?
谁可以帮帮我啊?为什么我的程序老是错误.没作业教,老师肯定不会放过我.希望各位好心人,指点一下……
data segment
mess db'please input sencond mumber:',0ah,0dh,'$'
result db ?
data ends
code segment
assume ds:data,cs:code
start:mov ax,data
mov ds,ax
mov dx,offset mess
mov ah,09h
int 21h
mov ah,01h
int 21h
sub al,30h
mov bl,al
mov ah,01h
int 21h
sub al,30h
xchg al,bl
mov cl,10
mul cl
mov bh,0
add ax,bx
mov result,al
mov ah,4ch
int 21h
code ends
end start
我这样做,错在哪了?为什么结果出来的都是乱码啊?