gpt4 book ai didi

java - 使用单个扫描仪对象扫描多行

转载 作者:搜寻专家 更新时间:2023-10-30 21:03:19 26 4
gpt4 key购买 nike

我是 Java 的新手,所以如果这对您来说听起来绝对愚蠢,请不要打分

好的,我如何使用单个扫描仪对象输入这个

5

hello how do you do

welcome to my world

6 7

给那些建议的人

scannerobj.nextInt->nextLine->nextLine->nextInt->nextInt,,,

检查一下,它不起作用!!!

谢谢

最佳答案

public static void main(String[] args) {
Scanner in = new Scanner(System.in);

System.out.printf("Please specify how many lines you want to enter: ");
String[] input = new String[in.nextInt()];
in.nextLine(); //consuming the <enter> from input above

for (int i = 0; i < input.length; i++) {
input[i] = in.nextLine();
}

System.out.printf("\nYour input:\n");
for (String s : input) {
System.out.println(s);
}
}

示例执行:

Please specify how many lines you want to enter: 3
Line1
Line2
Line3

Your input:
Line1
Line2
Line3

关于java - 使用单个扫描仪对象扫描多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22929819/

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