本帖最后由 潘成旺 于 2015-3-6 22:05 编辑
代码如下:
/* B:遍历字符串
分析:首先需要定义一个字符串;
遍历,输出即可;
*/
package com.panchengwang;
public class LianXi2 {
public static void main(String[] args) {
String st = "helloworld";
System.out.print("[");
for(int x = 0;x < st.length();x++){
char ch = st.charAt(x);
if(ch == st.length()-1){
System.out.print(ch+"]");
}else{
System.out.print(ch+" ,");
}
}
System.out.println();
}
}
我觉得代码是没问题的,嘿嘿,如有问题,请大婶赐教,小弟定虚心学习,可是问题是,我想要的输出结果是:[h,e,l,l,o,w,o,r,l,d]
可是真正输出的结果确是:[h ,e ,l ,l ,o ,w ,o ,r ,l ,d , 这是为啥呀?
|
|