首页 > VipKid笔试第二题输入问题
头像
小曹不可爱吗
编辑于 2020-08-21 20:41
+ 关注

VipKid笔试第二题输入问题

求大佬帮忙看一下我的代码输入有什么问题
输入的格式为:

        List<List<String>> inputList = new ArrayList<>();
        while (in.hasNextLine()) {
            List<String> list = new ArrayList<>();
            String temp = in.nextLine();
            String[] strings = temp.split(" ");
            list.add(strings[0]);
            list.add(strings[1]);
            inputList.add(list);
        }
代码读取完最后一行不会跳出while循环,是什么问题呢?

全部评论

(3) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

历年真题 真题热练榜 24小时
技术(软件)/信息技术类
查看全部

近期精华帖

热门推荐