gpt4 book ai didi

java - 如何使用 Scanner 类读取一行中空格分隔的字符串?

转载 作者:行者123 更新时间:2023-12-01 17:31:00 24 4
gpt4 key购买 nike

 Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
String s = sc.nextLine();
String[] arr = s.split(" ");
//not able to split the string by whitespace" ".

最佳答案

nextLine 这里首先读取该行的其余部分 according to the docs ,因此您需要再次调用 nextLine

Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
sc.nextLine(); // added
String s = sc.nextLine();
String[] arr = s.split(" ");

关于java - 如何使用 Scanner 类读取一行中空格分隔的字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61120275/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com