我只想打印“hello”5次而不使用for循环,而循环?
答案 0 :(得分:6)
System.out.println("hello hello hello hello hello");
答案 1 :(得分:1)
您可以使用递归执行此操作。这是家庭作业吗?听起来很像,所以除非你另有说法,否则我不会给出完整的答案。
答案 2 :(得分:0)
public String repeat(String str, int times){
return new String(new char[times]).replace("\0", str);
}
//...
String bob = "bob ";
System.out.println(repeat(bob, 5));