我希望你的星期天一切顺利。所以我在这个小程序中的目标是打印一个索引为 [0,1] [4,5]...[12,13]... 的新字符串...循环仅适用于大于 4 个字母的偶数单词. 为什么是这样?任何关于如何抛光这个粪便的建议将不胜感激。谢谢你。
import java.util.Scanner;
public class LoopPractice {
public static void main(String[] args) {
Scanner myScanner = new Scanner(System.in);
System.out.print("Enter a String please: ");
String str = myScanner.next();
int count = 0;
int x = 0;
int y = 1;
String emptyStr = "";
while ( count != str.length() ) {
emptyStr += str.charAt(x) + "" + str.charAt(y);
x += 4;
y += 4;
count += emptyStr.length();
}
System.out.print(emptyStr);
}
}