作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
代码编译正常,但最后没有打印任何内容。我是编码的新手,已经为此工作了几个小时,而且还在苦苦挣扎。
代码如下:
import java.util.Scanner;
public class caesartwo {
public static void main(String[] args) {
Scanner keyboard = new Scanner(System.in);
String originalText;
int shiftValue;
//encryption
System.out.println("What text would you like to encrypt?");
originalText=keyboard.nextLine();
//shift value
System.out.print("\nWhat is the shift value? ");
shiftValue=keyboard.nextInt();
//encrypted string
String encryptedText=encrypt(originalText,shiftValue);
//print result
System.out.println("\nThe encrypted text is:\n" + encryptedText);
}
public static String rotate(String userString, int shiftValue) {
String convertedText = "";
for(int i = 0; i < userString.length(); i++){
char lowerLetter = userString.charAt(i);
//uppercase conversion
char upperLetter = Character.toUpperCase(lowerLetter);
int charNumber = upperLetter;
//shift and wrap
int rotateShift = (charNumber + shiftValue) % 26;
char shiftLetter = (char) rotateShift;
//shifted chars
convertedText += shiftLetter;
}
return convertedText;
}
public static String encrypt(String userString, int shiftValue) {
String encryptedString = rotate(userString , shiftValue);
return encryptedString;
}
}
现在我不得不再写一些文字,因为我的代码文本太多等等等等。
最佳答案
rotate()
方法中的变量有些模糊。您应该提取它们并使它们成为实例变量,而不是让循环的每次迭代都创建新变量。你可以更简单地做到这一点。将您的旋转方法替换为以下内容:
public static String rotate(String userString, int shiftValue) {
String convertedText = "";
int offset = shiftValue % 26 + 26;
int j;
for(int i = 0; i < userString.length(); i++){
j = (userString.charAt(i) - 'a' +offset) % 26;
convertedText += (char) (j+'a');
}
return convertedText;
}
测试它,它现在吐出一个值。从这里劫持算法:http://rosettacode.org/wiki/Caesar_cipher#Java
关于Java:凯撒密码不会打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21396495/
我刚刚开始学习 C 语言类(class),并且遇到了命令行参数的问题。分配是这样的(还有更多,但这是开头有关命令行参数的部分): - 你的程序必须接受一个命令行参数,一个非负整数。 - 如果您的程序在
我需要检查命令行参数中是否有非数字字符。例如: ./problem 20x 应该打印出“不是数字”,因为它包含一个 x。我的代码似乎没有循环遍历命令行参数中的所有字符。 我基本上尝试了不同类型的循环,
这里我有从标准输入将字符流输入到数组中的代码。然后将该数组转换为二维数组。然后,它将该数组从行列顺序更改为列行顺序。然后它打印出创建凯撒移位加密的新数组。我遇到的问题是我的数组开始使用第二个用户输入的
我有点被这个问题困住了。当我运行程序时,由于某种原因,循环经过 z 的所有字母都不会打印。问题来自这个链接:http://docs.cs50.net/2016/x/ap/problems/caesar
我是一名优秀的程序员,十分优秀!