Click here to Skip to main content
15,891,184 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how two input number and multiply?
Posted
Comments
Richard MacCutchan 3-Nov-12 12:15pm    
By writing some code.

Try a more detailed explanation of your problem if you would like a sensible answer.
Arsalaan Ahmed 3-Nov-12 12:27pm    
How to input two number from user and then multiply these number in assembly language??
Arsalaan Ahmed 3-Nov-12 12:56pm    
.model small
.stack 100h
.data
;MSG1 db "Enter First Number : $"
;MSG2 db 13,10,"Enter Second Number : $"
;MSG3 db 13,10,"Result : $"
temp db ?
temp1 db ?
.code

main proc


mov ah,1
int 21h

mov temp,al


mov cx,4

l1:

mov al,temp
sub al,48

mov bl,1
mul bl
mov dl,cl

add dl,48
inc bl
mov ah,2
int 21h
loop l1

mov ah,4ch
int 21h

main endp
end main
this is my code,, print every time 22222

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900