字符串中的字符个数

更新时间:2023-06-13 11:18:32 阅读: 评论:0

字符串中的字符个数
实验4.1 统计字符串中字符个数
1. 题目:设有一字符串存放在以STRING串中,其最后一字符′$′作为结束标志,编一程序,计算该字符串的长度并输出。
2. 实验要求:输入字符串,以′$′结尾,要求使用串操作指令来计算字符串的长度。
3. 提示:从串的第一个字符开始统计,直到遇到定义的字符串结束符为止,看看在这个过程中总共有多少个字符,即求得串的长度。
.386
.MODEL FLAT
ExitProcess PROTO NEAR32 stdcall, dwExitCode:DWORD
INCLUDE io.h ; header file for input/output
模怎么组词cr EQU 0dh ; carriage return character
Lf EQU 0ah ; line feed
安全绘画.STACK 4096 ; rerve 4096-byte stack
.DATA ; rerve storage for data一年级拼音跟读
prompt1 byte "输入一串字符并以$符结束:",Lf,0
prompt2 byte lf,"字符串长度为:",0
string byte 100 DUP (?)
count DWORD 20 DUP (?)
.CODE ; start of main program code
_start:
output prompt1
感恩老师作文600字
input string,80
荷载箱mov al,'$'
leaedi,string
mov ebx,0
movecx,count音乐社团
cld
自动挡怎么开省油
again: scasb
jeendscasb
郁闷是什么意思
dececx
incebx
cmp ecx,0
jnz again
endscasb:
output prompt2
dtoacount,ebx
output count
INVOKE ExitProcess, 0 ; exit with return code 0
PUBLIC _start ; make entry point public END ; end of source code

本文发布于:2023-06-13 11:18:32,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/1036464.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:字符串   字符   统计   长度   要求   计算   定义   遇到
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图