我现在一直在尝试不同的事情,但我无法弄清楚为什么我的逻辑是错误的。这没有意义。
我正在尝试基于以下伪代码制作程序。
将以下用于随机排列字符串中的字符的伪代码翻译成 Java 程序。
- 读一个字。
- 重复循环 word.length() 次
- 在单词中选择一个随机位置 i,但不是最后一个位置。
- 在单词中选择一个随机位置 j > i。
- 交换位置 j 和 i 的字母。
- 打印单词。
- 然后将字符串替换为:
first + word.charAt(j) + middle + word.charAt(i) + last
这是我到目前为止所拥有的:
package assignment4;
import java.util.Scanner;
public class P4Point7 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.print("Please enter a word: ");
String word = in.next();
in.close();
int wordLength = word.length(); // Gets the word.Length
int x = 1; // Primes the loop
while (x <= wordLength) {
int i = (int) ((Math.random() * wordLength) - 1); // Gets a random letter i that is not the last letter
int j = (int) (Math.random() * (wordLength - i)) + i; // Gets a random letter j after i
String first = word.substring(0, i); // Gets first part of word
String middle = word.substring(i + 1, j); // Gets middle part of word
String last = word.substring(j + 1, wordLength); // Gets last part of word
x++; // Increments the loop
String status = first + word.charAt(j) + middle + word.charAt(i) + last; // Swaps i and j in the word
System.out.println(status);
}
}
}
我遇到的问题是
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: -1
at java.lang.String.substring(Unknown Source)
at assignment4.P4Point7.main(P4Point7.java:21)
我正在用“Waffle”这个词测试程序。