gpt4 book ai didi

java - 如果没有输入文件名,如何提示用户输入数据?

转载 作者:太空宇宙 更新时间:2023-11-04 13:08:47 25 4
gpt4 key购买 nike

public static void main(String[] args) {
System.out.println("Input filename: ");
Scanner sc = new Scanner(System.in);
String input = sc.nextLine();

while (input.length() == 0){
System.out.println("Please enter names: ");
String names = sc.nextLine();
}
}

当不再输入任何名称时,如何让程序结束?

最佳答案

while(input.length() == 0){   // use length() method
System.out.println("Please enter names: ");
String names = sc.nextLine(); //Same scanner but read names to enter into an array
}
}

关于java - 如果没有输入文件名,如何提示用户输入数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34168760/

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