如何获得单词的第一个字母并将其结尾? 最佳答案 您每次都应取第i个字母,而每次应取索引为0的第一个字母。更改firstLetter = word.charAt(i); 至firstLetter = word.charAt(0);