似乎我已经尝试了所有方法,但没有任何效果。我怎样才能得到这个以便用户可以决定是否添加另一个名字?我可以在没有用户决定的情况下很好地运行 for 循环。
import java.util.Scanner;
import java.text.DecimalFormat;
public class Part2 {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
final int STUDENT_SIZE = 50;
char choice1 = 'n';
int i = 0;
int stdntLength = 0;
boolean choice = true;
String[] stdntName = new String[STUDENT_SIZE];
String[] WIDNUM = new String[STUDENT_SIZE];
int[] EXM1 = new int[STUDENT_SIZE];
int[] EXM2 = new int[STUDENT_SIZE];
int[] EXM3 = new int[STUDENT_SIZE];
int[] finalExm = new int[STUDENT_SIZE];
do {
for (i = 0; i < stdntName.length; i++) {
System.out.println("Please enter the name of Student "
+ (i + 1) + ": ");
stdntName[i] = s.nextLine();
String fullName = stdntName[i];
String str[] = fullName.split(" ");
StringBuilder sb = new StringBuilder();
sb.append(str[1]);
sb.append(", ");
sb.append(str[0]);
String fullname = sb.toString();
stdntName[i] = fullname;
System.out.println(stdntName[i]);
System.out.print("Do you wish to enter another? (y/n): ");
choice1 = s.next().charAt(0);
}
} while (choice1 == 'y');
}
}
答案 0 :(得分:1)
do-while
循环似乎是多余的,可能会被删除。
在输入第 i 个学生的数据时,最好检查 y
的输入,如果输入了除 y
以外的任何字符,则中断。
更新
其他需要解决的问题:
str
的长度;将最后一个名字移到开头(不仅仅是第二个名字)。nextLine()
时使用 next()
而不是 choice1
- 因为 \n
不会被消耗并且使用 nextLine
读取的下一个名称将是一个空行。 for (i=0; i < stdntName.length; i++) {
System.out.println("Please enter the name of Student " + (i+1) + ": ");
stdntName[i] = s.nextLine();
String fullName = stdntName[i];
String str [] = fullName.split(" ");
if (str.length > 1) {
StringBuilder sb = new StringBuilder();
sb.append(str[str.length - 1]); // move the last name to beginning
sb.append(", ");
for (int j = 0; j < str.length - 1; j++) { // join remaining names
if (j > 0) {
sb.append(' ');
}
sb.append(str[j]);
}
stdntName[i] = sb.toString();
}
System.out.println(stdntName[i]);
System.out.print("Do you wish to enter another? (y/n): ");
choice1 = s.nextLine().toLowerCase().charAt(0); // read entire line
if (choice1 != 'y') {
break;
}
}