首页 > 解决方案 > 我怎样才能让它运行?

问题描述

好像我已经尝试了一切,但没有任何效果。我怎样才能得到这个,以便用户可以决定是否添加另一个名字?我可以在没有用户决定的情况下很好地运行 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');
    }
}

标签: javaarraysloopswhile-loopstringbuilder

解决方案


do-while循环似乎是多余的,可能会被删除。

在输入第 i 个学生的数据时,最好检查输入,y如果没有输入任何字符,y则中断。

更新
其他需要解决的问题:

  1. str拆分全名时检查长度;将姓氏移到开头(不仅仅是第二个名字)。
  2. 在阅读时使用nextLine()而不是- 因为不被消耗,并且下一个读取的名称将是一个空行。next()choice1\nnextLine
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;
        }
    }

推荐阅读