全部评论
java的可以用sc.next()按行读,再用split划分
scanf("%*d"); while (scanf("%d,%d%*c", &x, &y) > 0) ……
按例题输入就行!
按照string类型读,stringstream处理
初次看这题,好像leetcode有类似的题?
Scanner in = new Scanner(System.in);
int m = Integer.parseInt(in.nextLine());
ArrayList<Interval> input = new ArrayList<>();
for(int i = 0; i < m; i++){
String[] errorsClassifiedByEditors = in.nextLine().split(";");
for(int j = 0; j < errorsClassifiedByEditors.length; j++){
String[] errors = errorsClassifiedByEditors[j].split(",");
input.add(new Interval(Integer.parseInt(errors[0]), Integer.parseInt(errors[1])));
}
}
in.close();
读取3,4 scanf("%d,%d", &x, &y);
读取 3,4;5,6;7,8 scanf("%d,%d", &x, &y);
// 一些处理逻辑
while(scanf(";%d,%d", &x, &y)) {
//一些处理逻辑
}
我是用正则提取的 (\\d+),(\\d+);?
相关推荐
11-24 10:06
中南大学 Java 点赞 评论 收藏
分享