gpt4 book ai didi

Java 菜单循环问题;程序循环太快?

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

我正在做一项作业,我必须编写一个程序来加密和解密凯撒密码。我遇到问题的部分不是加密或解密,而是另一个要求,即我必须提供一个菜单,以便用户可以选择加密、解密或退出。此外,程序应该不断提示用户,直到用户选择退出。到目前为止我的代码是:

import java.util.*;
public class CaeserShiftTester
{
public static void main (String[] args)
{
Scanner in = new Scanner(System.in);
String choice = "";

while (!choice.equalsIgnoreCase("C"))
{

System.out.println("\nPlease select an option");
System.out.println("[A] Encrypt Code");
System.out.println("[B] Decrypt Code");
System.out.println("[C] Quit");

choice = in.next();

if(choice.equalsIgnoreCase("A"))
{
System.out.println("Please enter your key:");

final int KEY = in.nextInt();
System.out.println(CaeserShiftEncryption.shiftAlphabet(KEY));

System.out.println("\nPlease enter your message:");
String message = in.nextLine();

System.out.println(CaeserShiftEncryption.encryptCode(message,KEY));


}

if(choice.equalsIgnoreCase("C"))
{
System.out.println();
}
}


}

}

我的问题是,在“新字母表”打印到屏幕上后,程序循环回到最开始,要求用户选择a、b或c。用户永远没有机会输入要加密的消息。不幸的是,我需要打印生成的新字母表,我想不出这里可能有什么问题。希望大家能帮帮我。

此外,shiftAlphabet 和 encryptCode 方法均具有完整功能。

最佳答案

看看这个网站:http://www.java-made-easy.com/java-scanner.html

特别是

don't try to scan text with nextLine(); AFTER using nextInt() with the same scanner! It doesn't work well with Java Scanner, and many Java developers opt to just use another Scanner for integers

关于Java 菜单循环问题;程序循环太快?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13784521/

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