欢迎来到天天文库
浏览记录
ID:59372665
大小:11.50 KB
页数:1页
时间:2020-09-04
《汇编 从键盘读入一个字符串,以Enter结束,字符串不超过50个字符,并打印该字符串.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、;从键盘读入一个字符串,以Enter结束,字符串不超过50个字符,并打印该字符串lenequ50dsegsegmentstrindb'inputastring:$'stroutdb'thestringis$'bufdblen,?,lendup(?);读入的字符串dsegendscsegsegmentassumecs:cseg,ds:dsegstart:movax,dsegmovds,axleadx,strinmovah,9int21hleadx,buf;输入字符串movah,0ahint21hmovdl,1fh;换行movah,2int21hmovcl,buf+1;实际字符个数
2、movch,0leabx,buf+2addbx,cx;将bx指向字符串后存放回车0dh的位置movbyteptr[bx],'$';将字符串后存放回车0dh的位置中的内容置为'$'leadx,stroutmovah,9int21hleadx,buf+2;将用户输入的字符串输出movah,9int21hmovah,4chint21hcsegendsendstart
此文档下载收益归作者所有