搜索:str2
找到约 3 项符合「str2」的查询结果
结果 3
https://www.eeworm.com/dl/534/480360.html
其他
给定两个字符串str1与str2
给定两个字符串str1与str2,判断str1是否是str2的子序列。ACM程序设计题目
https://www.eeworm.com/dl/644/261082.html
汇编语言
查找字符串 TABLE DB "ABCDEFGHIKLMNOPQRSTUVWYZ" STR1 DB "Please enter a string:",0DH,0AH,"$" STR2 DB "Wr
查找字符串 TABLE DB "ABCDEFGHIKLMNOPQRSTUVWYZ"
STR1 DB "Please enter a string:",0DH,0AH,"$"
STR2 DB "Wrong! The string is too long!"$"
https://www.eeworm.com/dl/644/199823.html
汇编语言
data array sdword 2 dup(?) str1 byte "Please input one 32-bit sign number :",0dh,0ah,0 str2 by
data
array sdword 2 dup(?)
str1 byte "Please input one 32-bit sign number :",0dh,0ah,0
str2 byte "The result is : ",0
align 4
jia1gao sdword 0
jia1 sdword 0
.code
main proc
call clrscr
mov esi,offset array
mov ecx,lengthof array
mov edx,offset str1
push esi
putin:
cal ...