例如,如果我输入单词" HELLO" 输出必须是
HELLO 你好 你好 你好 HELLO
因为你好有5个字母,它也会显示5个你好。 我需要java的代码,请使用此
答案 0 :(得分:1)
在Javascript中:
var repeat = word => (word+" ").repeat(word.length);
在javascript中你可以使用String.repeat和String.length来获得所需的结果,用例:
console.log( repeat( "HELLO" ))
在Java中:
final /*help the compiler optimise out the size call*/ String s = "HELLO";
for (int n = 0; n < s.size(); ++n){
System.out.print((n == 0 ? "" : " ") + s);
}
System.out.println();
答案 1 :(得分:0)
You could simply use length attribute of a string to find out how many characters it contains then use a loop to show string length times.