gpt4 book ai didi

java - 提示用户输入直到出现空行

转载 作者:行者123 更新时间:2023-12-01 10:34:52 25 4
gpt4 key购买 nike

这是我的密码程序的主要方法。

我正在尝试将代码修改为提示用户输入直到提交空行的位置

public static void main(String[] args)
{
Scanner kb = new Scanner(System.in);
System.out.println("Enter ");
String message = kb.nextLine();

System.out.println("Enter encryption key: ");
String key = kb.nextLine();
int shift = Integer.parseInt(key);

String encrypted = Encrpyt(message, shift);
System.out.println("Encrypted: " + encrypted);

String decrypted = Decrypt(message, shift);
System.out.println("Decrypted: " + decrypted);
}

最佳答案

只需使用 while 循环即可。

String line = kb.nextLine()
while (!line.equals("")) {
(your code here)
line = kb.nextLine();
}

当用户输入空行时,while 循环将中断。

关于java - 提示用户输入直到出现空行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34824438/

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