程序:
import java.util.Collections; public class Test { public static void main(String[] args) { System.out.println(createRepeatedStr("自强不息",3)); } // Repeat seed with n times private static String createRepeatedStr(String seed,int n) { return String.join("", Collections.nCopies(n, seed)); } }
效果:
自强不息自强不息自强不息
--END--2019年11月24日20:02:08