首先,請記住我是這個新手,聰明的傢伙,很好!如何以我想要的方式混合字符串?
我試圖理解爲什麼在這一行:
for(i = word.length() -1; i >= 0; i--)
System.out.print(word.charAt(i));
我得到我的字符串回答我向後罰款(答案:oaiCgiiB),並在這行代碼:
for(i = 0 ; i <= word.length(); i++)
System.out.print(word.charAt(i));
我得到一個錯誤...
Beijing ChicagoException in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 15
at java.lang.String.charAt(String.java:646)
at p200548.main(p200548.java:43)
我想第二個像第一個工作,而不是輸出BiigCiao
任何幫助,將不勝感激。
(i = 0;我
Bozman
而不是'i <= word.length(); '在第二個for循環中使用'我
Rohan