【发布时间】:2020-03-26 23:46:25
【问题描述】:
我试图用 mips 替换字符串的特定字符。该程序就像用户需要输入限制为 40 个字符的字符串,程序需要询问用户是否要替换字符串中的任何字符。在我的代码中,我只能打印一个字符,这是我的代码:
.data
prompt0: .asciiz " Please Enter any String :"
prompt:.asciiz "\n Your current string is: "
prompt1:.asciiz "\n Do you want to make any changes to the string? (y/n): "
prompt2: .asciiz "\n Please Enter the Character that you want to Search for :"
prompt3: .asciiz "\n Please Enter the New Character : "
prompt4: .asciiz "\n Your Final string is: "
yes: .asciiz "y"
No :.asciiz "n"
Buffer: .space 40
.text
li $v0, 4
la $a0, prompt0
syscall
li $v0,8 # take in input
la $a0, Buffer # load byte space into address
li $a1, 40 # allot the byte space for string
move $t0,$a0 # save string to t0
syscall
li $v0,4
la $a0,prompt # load and print "you wrote" string
syscall
la $a0, Buffer # reload byte space to primary address
move $a0,$t0 # primary address = t0 address (load pointer)
li $v0,4 # print string
syscall
Loop:
# Ask if user want to chnge rthe string or not
li $v0, 4 # syscall 4 (print_str)
la $a0, prompt1 # argument: string
syscall
# GET INPUT FROM USER
li $v0, 8 # get input
la $a0, Buffer # load byte space into address
li $a1, 2 # allot the byte space for string
move $t0,$a0 # save string to t0
syscall
#EDIT
lb $t1, yes
lb $t0, 0($t0)
#END EDIT
bne $t0, $t1, Exit
#IF YES, PRINT MESSAGE
li $v0,4
la $a0,prompt2
syscall
li $v0, 8 #get input
la $a0, Buffer #load byte space into address
li $a1, 2 # allot the byte space for string
sw $t0,($a0) #save string to t0
syscall
li $v0,4
la $a0,prompt3
syscall
li $v0, 8 #get input
la $a0, Buffer #load byte space into address
li $a1, 2 # allot the byte space for string
move $t0,$a0 #save string to t0
syscall
la $a0,prompt #load and print "you wrote" string
li $v0,4
syscall
la $a0, Buffer #reload byte space to primary address
move $a0,$t0 # primary address = t0 address (load pointer)
li $v0,4 # print string
syscall
j Loop
Exit:
li $v0,10 #end program
syscall
jr $ra
这是我想要转换为 mips 的 C 程序:
#include <stdio.h>
#include <string.h>
int main()
{
char str[40], ch, Newch;
int i;
printf("\n Please Enter any String : ");
gets(str);
printf("\n Please Enter the Character that you want to Search for : ");
scanf("%c", &ch);
getchar();
printf("\n Please Enter the New Character : ");
scanf("%c", &Newch);
for(i = 0; i <= strlen(str); i++)
{
if(str[i] == ch)
{
str[i] = Newch;
}
}
printf("\n The Final String after Replacing All Occurrences of '%c' with '%c' = %s ", ch, Newch, str);
return 0;
}
【问题讨论】:
-
我投票结束这个问题作为题外话,因为没有问题,只是一些不完整的代码。
-
@ErikEidt 请将您的标志更改为
Needs details of clarity,因为这就是“没问题,只是一些代码”的意思 -
@SzymonMaszke 我的问题是如何替换字符串的字符并打印更改的字符串。
-
@ErikEidt 我已经提到我能够替换字符但不能替换字符串和打印之间的字符,所以我需要帮助。
-
好的,让我们分解一下。要么您根本需要算法方面的帮助,要么在汇编中需要如何执行您已经知道的算法。如果是前者,那么这显然不是一个装配问题,你的问题应该是关于那个(算法)。如果是后者,那么您需要向我们展示您的 C 算法,以及您无法在汇编中完成的 C 代码中的哪些构造,您的问题应该与此有关。 “我需要帮助”或“我不知道如何”——完成作业——不是有效的问题。 (事实证明,它们根本不是问题;)