public class solution {
public static void main(String[] args) {
String str = "The horse jumped over the sheep";
String str1 = "";
for(int i = 0; i!='\0'; i++); {
if(str.charAt(i) != ' ')
str1=str1+str.charAt(i);
}
System.out.println(str1);
}
}
程序在变量处显示错误i。还有没有其他没有内置功能的没有空白的打印方法吗?
收到一只叮咚
相关分类