为了账号安全,请及时绑定邮箱和手机立即绑定

打印输出str的每个字符,且字符以空格隔开

public static void main(String[] args) {
		String str = "msjsjksla";
		System.out.println(str);
		strPrint(str);
}
	//打印输出str的每个字符,且字符以空格隔开
	public static void strPrint(String str){
	


正在回答

2 回答

//好像这样可以,这一块(StringBuffer类 ,chartAt(index))是字符串的知识

StringBuffer sb = new StringBuffer(str);

for(int i=0;i<str.length();i++)

{

System.out.print(sb.charAt(i)+"\t");

}


0 回复 有任何疑惑可以回复我~

    String str = "hello";

    System.out.println(str.length());

    for(int i=0 ; i<str.length(); i++){

        char a = str.charAt(i);

        System.out.print(a);

        System.out.print(' ');

    }


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

打印输出str的每个字符,且字符以空格隔开

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信