這是用於我的修訂。我試圖通過重複String s
來建立一串int n
字符。我試圖得到的答案是testtestte
。通過重複字符串打印「n」個字符的字符串
這是我到目前爲止。當索引達到4時,由於字符串只有4個字符,它顯然會出局或綁定。我希望它能夠在索引達到3時回到0並繼續,直到int n滿足爲止(這可能是錯誤的詞)10.如果問題不夠清楚,對不起。
public static void main(String[] args){
beads("test", 10);
}
public static void beads(String s, int n){
char[] eachChar = new char[n];
for (int index = 0; index < n; index++) {
eachChar[index] = s.charAt(index);
}
System.out.println(eachChar);
}