我正在我的 com 课上做一个作业,要求我创造一个命运之轮游戏。我目前正在研究getDisplayedPhrase
我将解释的方法。因此,对于这个程序,我有一个随机短语,例如,
"this is a question, thanks for helping!"
我希望这个短语更改为
"**** ** * ********, ****** *** *******!"
这就是短语在他们猜测之前应该是什么样子。如您所见,我正在尝试仅更改字母,因此我创建了一个
private static final String alpha ="abcdefghijklmnopqrstuvwxyz"
以避免任何标点符号。这是我到目前为止所拥有的:
public String getDisplayedPhrase() {
for (int i = 0; i<secretPhrase.length(); i++){
I don't know what to put here and what method to use???
I'm thinking of using charAt() or indexOf()
}
return displayedPhrase;
}