所以我想要做的是回報:爪哇 - 從返回信息循環
輸入爲createMixedString(Hello,there,3)
,我想輸出HellothereHellothereHellothere
我的問題是,當它運行它只是回報Hellothere
就好像程序沒有看到我在for循環中做的重新分配。
public static String createMixedString(String s1, String s2, int n) {
String result = s1+s2;
for (int i=0;i>=n;i++) {
result = result+s1+s2;
}
return result;
}
檢查條件,我認爲你把「>」錯誤的方式。 – warbio 2012-02-07 01:23:54