1个回答
展开全部
code segment;
assume cs:code,ds:code
org 100h;标准COM格式
start:
push cs
pop ds
xor ax,ax
mov bx,ax
next:
inc bx
inc n
add ax,bx
cmp ax,500
jbe next
mov sum,ax
lea dx,mes2;提示完成
mov ah,9
int 21h
mov ah,0;暂停
int 16h
mov ah,4ch;结束
int 21h
n dw 0 ;统计被累加自然数的个数
sum dw 0 ;放累加和
mes2 db 0dh,0ah,09,'Save done! $'
code ends
end start
assume cs:code,ds:code
org 100h;标准COM格式
start:
push cs
pop ds
xor ax,ax
mov bx,ax
next:
inc bx
inc n
add ax,bx
cmp ax,500
jbe next
mov sum,ax
lea dx,mes2;提示完成
mov ah,9
int 21h
mov ah,0;暂停
int 16h
mov ah,4ch;结束
int 21h
n dw 0 ;统计被累加自然数的个数
sum dw 0 ;放累加和
mes2 db 0dh,0ah,09,'Save done! $'
code ends
end start
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询