在strKeyword将根据循环被重复。如何将结果另存为新字符串。例如,如果工作“ hello”重复了两次,我现在将如何创建“ hellohello”作为一个全新的字符串。
strKeyword
for (int l = 0; l < newKeywordLength; l++) { System.out.print(strKeyword); }
string newWord=""; for (int l=0; l<newKeywordLength; l++){ newWord+=strKeyword; } System.out.print(newWord);