吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1260|回复: 8
收起左侧

[求助] 求java输入遇到回车结束输入的代码

[复制链接]
nianxinzhuo233 发表于 2021-7-25 10:25
            int coefficient = scanner.nextInt();
            int index = scanner.nextInt();
            YiYuanNode newNode = new YiYuanNode(coefficient,index);
            yiYuanLinkList.addNode(newNode);

对于这一段话套一个循环,让他遇到回车时结束输入

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

侃遍天下无二人 发表于 2021-7-25 13:12
不如输入-1结束来得简单,回车在这个方法中会被自动丢弃的
currentdirect 发表于 2021-7-25 15:22
不要用nextInt(),用nextString,然后再转成int,规定一个特定字符串作为结束标志
Whitte 发表于 2021-7-25 17:34
        Scanner scanner = new Scanner(System.in);
        for (int num : scanner.nextLine().toCharArray()) {
            System.out.println("num = " + (num - '0'));
            // do something..
        }
kk7467 发表于 2021-7-26 01:13
        Scanner scanner = new Scanner(System.in);
        String s = scanner.nextLine();
        String[] split = s.split(" ");
        for (String count:
             split) {
            int index = Integer.parseInt(count);
            YiYuanNode newNode = new YiYuanNode(coefficient,index);
            yiYuanLinkList.addNode(newNode);
        }
数字中间用空格分割,你看看行不行
 楼主| nianxinzhuo233 发表于 2021-7-26 10:03
Whitte 发表于 2021-7-25 17:34
Scanner scanner = new Scanner(System.in);
        for (int num : scanner.nextLine().toCharA ...

这个貌似还是不行
 楼主| nianxinzhuo233 发表于 2021-7-26 10:05
kk7467 发表于 2021-7-26 01:13
Scanner scanner = new Scanner(System.in);
        String s = scanner.nextLine();
        S ...

谢谢哥们,不过还是不行呀
VioletKiss 发表于 2021-7-26 15:01
肯定要有一个结束符的,你可以用 StringUtils.isNotBlank(type) 来判断,但是空格+回车也会跳出循环
Muzihao 发表于 2021-7-28 12:14
  ArrayList<Integer> arry = new ArrayList<Integer>();
        Scanner scannner = new Scanner(System.in);
        String string = scannner.nextLine();
        Scanner scannner_next = new Scanner(string);
        while(scannner_next.hasNextLine()) {

            arry.add(scannner_next.nextInt());

        }
        System.out.println(arry);

    }

试试这个看符合要求不。
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 00:38

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表