如何获得单词的第一个字母并将其结尾?

最佳答案

您每次都应取第i个字母,而每次应取索引为0的第一个字母。更改

firstLetter = word.charAt(i);




firstLetter = word.charAt(0);

10-04 20:13