03-29 10:28
门头沟学院 Java 0 点赞 评论 收藏
分享
2022-12-16 14:21
门头沟学院 Java 0 点赞 评论 收藏
分享
牛客557200294号:public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
Set<Integer> set = new HashSet<>();
while (scanner.hasNextLine()) {
String s = scanner.nextLine();
String[] s1 = s.split(" ");
Integer a = Integer.valueOf(s1[0]);
Integer b = Integer.valueOf(s1[1]);
for (int i = a+1; i <= b; i++) {
set.add(i);
}
}
System.out.println(set.size());
}
}
投递小米集团等公司10个岗位 >
0 点赞 评论 收藏
分享
关注他的用户也关注了: