How to limit contained associations per record/group?是我用来格式化测试用例给出的输入的格式。
字符串和整数之间必须有15个空格,并且如果只有两位数字,则在整数前添加零。我的代码是据我所知实现的,并且与期望的输出匹配,但是我的代码是仍然被认为不正确。
我可以帮忙找出原因吗?
我的代码:
import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
System.out.println("================================");
for(int i=0;i<3;i++) {
String s1=sc.next();
int x=sc.nextInt();
int length = String.valueOf(x).length();
if(length < 3) {
System.out.format("%-15s %03d %n", s1, x );
} else {
System.out.format("%-15s %d %n", s1, x );
}
}
System.out.println("================================");
}
}
答案 0 :(得分:0)
只需删除字符串格式的空格,如下所示:
// ...
if(length < 3) {
System.out.format("%-15s%03d%n", s1, x);
} else {
System.out.format("%-15s%d%n", s1, x);
}
// ...
它通过了所有测试:)