我在Fibonacci序列计算的每一步输出计算值时遇到问题,它输出计算值的相应ascii字符,如☺☻♥♣,序列运行的次数取决于用户,但它是限于47:
org 100h
ask_for_input db " Please enter a number[1-47]: ","$"
inputNumber DB 0
conv DB 10D
newL DB 0AH,"$"
ask-again:
LEA DX, newL
MOV AH,9H
int 21H
; Ask for user input
LEA DX, ask_For_input
mov AH,9H
int 21H
; Gets user input
; First digit
MOV ah, 01H
int 21h
SUB AL, 30H
MUL conv
MOV inputNumber, AL
; Second Digit
MOV AH, 01H
int 21h
SUB AL, 30H
add inputNumber, AL
; Checks if number is above 47D
CMP inputNumber, 2FH
JNLE ask-again
; Checks if number is below 00D
CMP inputNumber, 00H
JLE ask-again
; Squence loop Counter
MOV CH, 00H
MOV CL, inputNumber
; Starting calculation
prev DB 01D
current DB 1D
Begin:
space DB " ","$"
LEA DX, space
MOV AH,9H
int 21H
; Print Current Number
LEA DX, current,"$"
mov AH,09H
int 21H
; Finds next number
MOV BL, prev
add current, BL
; Advances prev
MOV BL, current
SUB BL, prev
MOV prev, BL
Loop Begin
答案 0 :(得分:1)
始终将数据放在执行路径之外。现在,您已在指令之间放置了上架,当前和空间的数据。这将导致失败。
ask_for_input db " Please enter a number[1-47]: ","$"
inputNumber DB 0
conv DB 10D
newL DB 0AH,"$"
prev DB 01D
current DB 01D,"$"
space DB " ","$"
为了实际打印您需要将其转换为字符的数字。您的当前变量包含二进制值,而不是字符!此快速解决方案仅显示单个数字斐波那契数字:
; Print Current Number
add current, 30H
LEA DX, current
mov AH,09H
int 21H
sub current, 30H