-
연습문제 8Programming 2009. 3. 29. 01:36다음 프로그램을 작성하라 (a)"?"를 표시하고 (b) 합이 10이 넘지 않는 두개의 10진수를 읽어 (c) 두수와 그 합을 다음 줄에 적절한 메세지와 함께 출력한다.
실행 예)?27THE SUM OF 2 AND 7 IS 9
title pgm4_8: 합계출력
.model small.stack 100h.datamsg2 db 0dh,0ah,'The sum of: 'msg3 db ?,' and 'msg4 db ?,' is 'sum db ?,'$'
.code
main procmov ax,@datamov ds,ax
mov ah,2mov dl,'?'int 21hmov ah,1int 21hmov msg3,almov ah,1int 21hmov msg4,almov sum,almov al,msg3add sum, alsub sum,30h
lea dx,msg2mov ah,9int 21h
mov ah,4chint 21h
main endpend main
728x90반응형