朋友们我在项目中要暗示一些东西,我发现了一些困难,如下:
String name1 = "Bharath" // its length should be 12
String name2 = "Raju" // its length should be 8
String name3 = "Rohan" // its length should be 9
String name4 = "Sujeeth" // its length should be 12
String name5 = "Rahul" // its length should be 11 " Means all Strings with Variable length"
我有字符串及其长度。我需要按以下格式获取输出。通过使用字符串连接和填充。我需要在 Groovy 中回答,即使 Java 也很好..
"Bharath Raju Rohan Sujeeth Rahul "
方法:
Bharath 向前 5 个黑色空间,因为 lenth 为 12 (7+5 = 12),
Raju 向前 4 个黑色空间,因为 lenth 为 8 (4+4 = 8),
Rohan 向前 4 个黑色空间,因为 lenth 是 9(5+4),
Sujeeth 向前 5 个黑色空间,因为 lenth 为 12 (7+5),
Rahul 向前 6 个黑色空间,长度为 11(5+6),