问题是这样的:
将student_name 中的空格用 " * "替换
dseg segment
student_name db 30 dup(' ')
dseg ends
cseg segment
assume cs:cseg,ds:dseg
start:
mov ax,dseg
mov ds,ax
mov si,-1
mov al,20H
mov cx,30
next:
inc si
cmp al,student_name[si]
loopz next
then: mov si,-1
mov al,' * '
inc si
mov student_name[si],al
loop then
mov ax,4c00H
int 21H
cseg ends
end start
我得不到.
还有就是我想从键盘上输入student_name字符串,再验证它是否是全空格.
我不会.
帮忙修改和改进我的程序.谢谢!
[此贴子已经被作者于2006-12-3 15:58:09编辑过]