编写汇编程序 运用add与mov指令 计算2的4次方 最多4行指令

2025-02-24 04:27:59
推荐回答(1个)
回答1:

mov ax,2
add ax,ax
add ax,ax
add ax,ax