编写一个名为 repl 的方法,它接受一个字符串和多次重复作为参数,并返回多次连接的字符串。例如,调用repl("hello", 3)
返回“hellohellohello”。如果重复次数为 0 或更少,则返回空字符串。
我努力了:
public String repl(String x,int y){
if(y<=0){
return null;
}
else{
return x;
}
}
不知何故,我无法打印 hello 3 次。我的输出只有一次。有人能指出我做错了什么吗?