利用DOS 功能调用从键盘输入一个字符,将其ASCII 码加1 后在屏幕上显示 求代码

2024-07-11 23:31:38
推荐回答(1个)
回答1:

mov ah,1
int 21h
inc al
mov ah,2
mov dl,al
int 21h