给定两个数m,n,使用欧几里得的辗转相除法求出它们的最大公约数


s0 segment
m dw 5
n dw 15
s0 ends

s1 segment stack
dw 100 dup(?)
top label word
s1 ends

s2 segment
assume cs:s2,ss:s1,ds:s0
main proc near
mov ax,s0
mov ds,ax
mov ax,s1
mov ss,ax
lea sp,top

mov ax,m
mov bx,n
go:
xor dx,dx
div bx
cmp dx,0
je put
mov ax,bx
mov bx,dx
jmp go

put:
mov ax,bx
call decoutput

mov ah,4ch
int 21h
main endp


decoutput proc near
    push ax
    push dx
    push bx
    push cx
    
    test ax,8000h
    jz  start
    push ax
    mov dl,2dh
    mov ah,02h
    int 21h
    pop ax
    neg ax  

start:
    xor cx,cx
    mov bx,10
here:
    cwd
    div bx
    push dx
    inc ch
    cmp ax,0
    jne here
    
    mov cl,8
there:
    pop dx
    and dx,00ffh
    add dl,30h
    mov ah,02h
    int 21h
    dec ch
    cmp ch,0
    ja there

    pop cx
    pop bx
    pop dx
    pop ax
    ret    
decoutput endp

s2 ends
end main


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值