- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我这里有一个非常简单的小程序,它读取一个整数,对其进行加密,然后解密它,但无论出于何种原因,有时它会给我正确的答案,而有时却不会。代码:
public class Cipher {
public static void main(String[] args) {
System.out.println("Welcome to Caesar Cipher Demo:");
Scanner scanner = new Scanner(System.in);
CaesarCipher cipher = new CaesarCipher();
int a, n, x, y;
int i = 1;
while(true) {
System.out.println("====== General Test ======");
System.out.println("Please specify the following numbers:");
System.out.printf("n - ");
n = scanner.nextInt();
scanner.nextLine();
System.out.print("a - ");
a = scanner.nextInt();
scanner.nextLine();
cipher.setN(n);
cipher.setA(a);
//scanner.nextLine();
System.out.printf("plaintext value from [0 - %d] - ", (n-1));
x = scanner.nextInt();
y = cipher.encrypt(x);
System.out.printf("ciphertext value - %d%n", y);
x = cipher.decrypt(y);
System.out.printf("back to plaintext value - %d%n", x);
scanner.nextLine();
System.out.printf("Continue? (1 for yes, 0 for no) - ");
i = scanner.nextInt();
scanner.nextLine();
if(i == 0) break;
}
while(true){
System.out.println("====== Text Message Test ======");
cipher.setN(26);
System.out.printf("key [0-25] - ");
a = scanner.nextInt();
scanner.nextLine();
while(a < 0 || a > 25){
System.out.printf("key must be from [0-25] - ");
a = scanner.nextInt();
scanner.nextLine();
}
cipher.setA(a);
System.out.printf("plaintext (use English alphabet)- ");
String plaintext = scanner.nextLine();
plaintext = plaintext.toLowerCase();
String ciphertext = cipher.encrypt(plaintext);
System.out.printf("ciphertext - %s%n", ciphertext);
plaintext = cipher.decrypt(ciphertext);
System.out.printf("plaintext - %s%n", plaintext);
System.out.printf("Continue? (1 for yes, 0 for no) - ");
i = scanner.nextInt();
scanner.nextLine();
if(i == 0) break;
}
}
}
class CaesarCipher {
private int a;
private int n;
private char[] letters;
public CaesarCipher() {
this.letters = new char[]{'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'};
}
public int getA() {
return a;
}
public int getN() {
return n;
}
public void setA(int a) {
this.a = a;
}
public void setN(int n) {
this.n = n;
}
public int encrypt(int x){
if (x >= n){
System.out.println("X must be less than "+n+"-1");
}
return (a+x) % n;
}
public int inverseOf(int e){
return (n - e %n);
}
public int decrypt(int y){
if (y >= n) {
System.out.println("N must be "+ n +"-1");
}
return (inverseOf(a) + y % n);
}
public String encrypt(String plaintext){
char[] ciphertext= new char[plaintext.length()];
for (int j = 0; j<plaintext.length();j++) {
char c = plaintext.charAt(j);
int index = c- 'a';
if (index < 0 || index > 25) {
System.out.println("Illegal character!");
System.exit(1);
}
index = encrypt(index);
ciphertext[j] = letters[index];
}
return new String(ciphertext);
}
public String decrypt(String ciphertext){
char[] plaintext = new char[ciphertext.length()];
for (int j = 0; j < ciphertext.length();j++) {
char c = ciphertext.charAt(j);
int index = c- 'a';
index = decrypt(index);
plaintext[j] = letters[index];
}
return new String(plaintext);
}
}
我得到的输出:
Welcome to Caesar Cipher Demo:
====== General Test ======
Please specify the following numbers:
n - 54
a - 44
plaintext value from [0 - 53] - 15
ciphertext value - 5
back to plaintext value - 15
Continue? (1 for yes, 0 for no) - 1
====== General Test ======
Please specify the following numbers:
n - 78
a - 55
plaintext value from [0 - 77] - 7
ciphertext value - 62
back to plaintext value - 85
Continue? (1 for yes, 0 for no) - 1
====== General Test ======
Please specify the following numbers:
n - 55
a - 54
plaintext value from [0 - 54] - 6
ciphertext value - 5
back to plaintext value - 6
Continue? (1 for yes, 0 for no) - 1
====== General Test ======
Please specify the following numbers:
n - 632
a - 43
plaintext value from [0 - 631] - 66
ciphertext value - 109
back to plaintext value - 698
Continue? (1 for yes, 0 for no) - 1
====== General Test ======
Please specify the following numbers:
n - 25
a - 3
plaintext value from [0 - 24] - 5
ciphertext value - 8
back to plaintext value - 30
Continue? (1 for yes, 0 for no) -
正如您所看到的,有时它会返回正确的回到明文值
,有时它会添加n
和来自[0 - n-1的明文值]
。我相信这是由于扫描仪问题造成的,但无法弄清楚问题到底出在哪里。我希望另一双眼睛能看到我看不到的东西。感谢您抽出宝贵的时间,我真的很感激!
最佳答案
我不确定您想在解密函数中做什么,尤其是方法inverseOf
。但这是不正确的。您在解密函数中想要的只是从加密值中减去 key (然后使用模运算符将其保持在正确的范围内,并额外检查它是否不是负数,因为模运算符本身不足以保持范围底端内的值)
public int decrypt(int y) {
if (y >= n) {
System.out.println("N must be " + n + "-1");
}
if (y < a)
return (y - a + n) % n;
else
return (y - a) % n;
}
关于Java:扫描仪问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35713353/
我在使用 Scanner 类中的 useDelimiter 时遇到一些问题。 Scanner sc = new Scanner(System.in).useDelimiter("-"); while(
我是 Java 新手。 我目前正在做一个业余项目;制作基于文本的游戏。我意识到使用 Switch 语句对于此类游戏非常有用。 这基本上就是它的工作原理。 我问用户,你想做什么? 吃 步行 等等 那么,
我正在尝试使用扫描仪从“p.addPoint(x,y);”形式的字符串中读取代码行 我想要的正则表达式格式是: *任何内容*.addPoint(*空格或无* 或 ,*空格或无* 到目前为止我所尝试的方
我正在使用 java Scanner 尝试从名为 Inventory.txt 的文本文件中提取产品信息。 此文件包含以下格式的产品数据: “Danelectro|Bass|D56BASS-AQUA|3
我是java初学者,我正在努力让这段代码正常工作。我正在尝试读取 CSV 文件,然后使用该数据计算平均值,然后返回平均值的最高最低值和平均值的摘要。 输入如下所示: Alicia Marks,89,9
当我进入/忽略文件 reg.txt 中的最后一个新行时,我需要一些有关退出的帮助。截至目前,当它到达最后一行时,我收到一个错误,其中不包含任何内容。 public String load() {
我的程序应该提示用户输入与参加了多少次考试相关的考试分数。然而,这工作得很好,当用户输入负的考试分数时,应该让他们再次重新进入所有三项考试。我的程序会保存任何非负面的考试,因此当您重新输入三项考试时,
这个问题已经有答案了: Scanner is skipping nextLine() after using next() or nextFoo()? (25 个回答) 已关闭 9 年前。 下面给出的
我想读取用户输入,例如:11 12 13 14 15 16 Scanner sc = new Scanner(System.in); while(sc.hasNext()){
String[] invalidChars = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"}; Scanner sc = ne
我有一个txt文件,每行包含两个单词,例如: USA 321 France 1009 ... Germany 902 如何在二维数组中逐字读取该文件?我有: List> temps = new Arr
我的 Java 作业有问题。我收到意外异常,特别是: java.util.NoSuchElementException: No line found 我正在使用 Scanner(System.in)
我有一个很大的困惑,当我们有 Sonar 服务器时 Sonar 扫描仪有什么用?当我使用 soarqube 服务器分析一个项目时,它进行了分析并且运行良好。我仍然很困惑为什么我们也需要扫描仪。 与ec
为什么我在递归方法中遇到无限循环,而没有机会输入任何符号来打破它? class Test { int key=0; void meth(){ System.out.println
我在运行此函数时遇到错误。它使用扫描仪在某个文件中查找单词。 这里是: public static boolean VerifyExistWord(File FileToSearch, String
各位程序员大家好。 我有一些代码,spring工具套件编辑器的响应也不同,也许你们中的一些聪明人知道为什么。 File inputFile = new File(System.getProperty(
是否可以从我的网络应用程序中使用 Flash 访问通用 twain 扫描仪,保存文件并将其上传到我的应用程序中? 我已经通过谷歌进行了一些搜索,但无法找到更多细节。是否有任何预制的解决方案,付费/免费
我试图在 float 组中引入一组 float 字: protected float[] a = new float [100]; public void setCoef(){ System.
我一直在做一项充当拼字游戏词典的编程作业。该程序接受用户的输入,并根据用户从菜单中请求的内容输出包含单词列表的文件。我遇到的问题与 Scanner.nextLine() 有关。 我不太清楚为什么,但由
我试图让程序询问百分比(等级),但我希望它在用户进行第一个输入并看到输出后再次询问。我在循环中遇到问题,因为未分配变量 myMark。 import java.util.Scanner; public
我是一名优秀的程序员,十分优秀!