程序接收用户键入的一个关键字以及一个句子。如果句子中不包含关键字则显示‘No match!’;如果句子中包含关键字,则显示‘Match’,且把该字在句子中的位置用十六进制数显示出来。要求程序的执行过程如下: Enter keyword:abc Enter Sentence:We are studying abc. Match at location:11H of the sentence. Enter Sentence : xyz,OK? No match. Enter Setence: ^
设计实验:程序接收用户键入的一个关键字以及一个句子。如果句子中不包含关键字则显示‘No match!’;如果句子中包含关键字,则显示‘Match’,且把该字在句子中的位置用十六进制数显示出来。要求程序的执行过程如下: Enter keyword:abc Enter Sentence:We are studying abc. Match at location:11H of the sentence. Enter Sentence : xyz,OK? No match. Enter Setenc
试编写一程序:比较两个字符串string1和string2所含的字符是否相同,若相同则显示‘match’; 否则,显示‘no match’ 调用字处理程序EDIT 建立以sample.asm文件 datarea segment string1 db ‘move the cursor backward.’ string2 db ‘move the cursor backward.’ ....