2

昨夜これについて質問を投稿しましたが、まだ苦労しています。テキスト ファイルから学生のリストを最初に名前 (この形式では姓、名) で並べ替え、次にテストの点数で並べ替える必要があります。100 人未満であることを除けば、テキスト ファイルに含まれる学生の数はわかりません。 mこれを正しく使用してください)。私は文字通り何時間もこれをいじっていますが、私はそれを理解していないようです. テキストブックは本当に私を助けていないようです。アプリ クラスで生徒の名前/成績を並べ替えて印刷するにはどうすればよいですか?

他の仕様は、スコアの平均を取得し、平均を下回るスコアの横にコメントを作成することです。ただし、それらは、並べ替えを整理した後に取り組むことができます。

これが私のコードです...

 package CH11AS8App;

 import java.io.FileReader;
 import java.util.Arrays;
 import java.util.Comparator;
 import java.util.Scanner;


 public class kjkkkkkkkkkkk {

 public static void main( String[] args ) throws Exception {
    // TODO Auto-generated method stub

        Scanner aScanner = new Scanner(
                                 new FileReader("src//chapt11//ch11AS8data.txt"));



        int numOfStudents = 100;
        Student[] studentArray = new Student[numOfStudents];
        Scanner sc = null;

        int counter = 0;
        while (aScanner.hasNext()) {
            sc = new Scanner(aScanner.nextLine());
            String lastName = sc.next();
            String firstName = sc.next();
            int score = sc.nextInt();


            studentArray[counter++] = new Student(lastName, firstName, score);

            studentArray[counter] = new Student(lastName, firstName, score); 

            int average= 0;
            int sum = 0;
            sum += score; 
             if (counter < numOfStudents); 
            average = sum / counter;
            if (score <= (average - 10)) {
             System.out.println("Score 10 points under average");
            System.out.println("Student Average:" + average);
        }



            sc.close();


            // Display Welcome Message
            System.out.println("Welcome to the Student Scores Application.\n");

            //Sort Names
            Arrays.sort(studentArray,0,counter, new Comparator<Student>(){
                @Override
                public int compare(Student s1, Student s2) {
                    return s1.getLastName().compareTo(s2.getLastName());
                }
            });

            System.out.println();
            System.out.println("Student list by name:");
            System.out.println();
            for(int j = 0; j < counter; j++){  
                System.out.println(studentArray[j]);

            }

            //Sort Scores
            Arrays.sort(studentArray,0,counter, new Comparator<Student>(){
                @Override
                public int compare(Student s1, Student s2) {
                    return Integer.valueOf(s2.getScore()).
                                       compareTo(Integer.valueOf(s1.getScore()));
                }
            });


            System.out.println();
            System.out.println();
            System.out.println("Student list by score:");
            System.out.println();
            for(int j = 0; j < counter; j++){  
                System.out.println(studentArray[j]);

            }


            //Close Scanner
            aScanner.close();

}

static class Student implements Comparable<Student> {

    //Instance Variables
    private String firstName;
    private String lastName;
    private int score;

    //Getters & Setters
    public Student( String firstName, String lastName, int score ) {
        this.firstName = firstName;
        this.score = score;
        this.lastName = lastName;
    }
    public int getScore() {
        return score;
    }

    public String getFirstName() {
        return firstName;
    }

    public String getLastName() {
        return lastName;
    }


    //CompareTo Method
    @Override
    public int compareTo( Student s ) {

        if( !firstName.equalsIgnoreCase( s.firstName ) ) {

            return firstName.compareToIgnoreCase( s.firstName );
        }

        if( !lastName.equalsIgnoreCase( s.lastName ) ) {

            return lastName.compareToIgnoreCase( s.lastName );
        }
            return (new Integer(score)).compareTo((new Integer(s.score)));
    }
        @Override public String toString(){ return lastName + ", "+ firstName        +" : "+score; }


    }

 }
4

3 に答える 3

4

あなたの間違いはcompareTo()メソッドの最後の行にあります:

変化する

return examScore = s.examScore;

return examScore - s.examScore;


インスタンス変数を設定するのではなく、違いを返したいのです!

于 2012-11-12T02:42:37.147 に答える
1

次のように、compareTo の最後の行を変更する必要があると思います。

    return (new Integer(examScore)).compareTo((new Integer(s.examScore));

また

    return Integer.valueOf(examScore).compareTo(Integer.valueOf(s.examScore));

これにより、2 つの値が比較され、それに応じて返されます。

編集:

プログラムのいくつかの修正:

  1. 次のようにクラスにtoString()メソッドを追加します。Student

    @Override public String toString(){ return firstName + " "+ lastName +" : "+examScore; }

  2. アプリのメソッドを次のように更新main()します。

    public static void main(String[] args) throws Exception {
    
        Scanner aScanner = new Scanner(
                               new FileReader("src//chapt11//ch11AS8data.txt"));
    
        System.out.println("Welcome to the Student Scores Application.\n");
    
        int nStudent = 100;
        Student[] studentArray = new Student[nStudent];
        Scanner lineScanner = null;
    
        int counter = 0;
        while (aScanner.hasNext()) {
            lineScanner = new Scanner(aScanner.nextLine());
            String lastName = lineScanner.next();
            String firstName = lineScanner.next();
            int examScore = lineScanner.nextInt();
            System.out.println("Student " + counter + " " + firstName + " "
                    + lastName + " " + +examScore);
    
            studentArray[counter++]=new Student(lastName, firstName, examScore);
            lineScanner.close();
        }
    
        for(int j = 0; j < counter; j++){  
            System.out.println(studentArray[j]);
        }
    
    
    
        //sort based on first name
        Arrays.sort(studentArray,0,counter, new Comparator<Student>(){
            @Override
            public int compare(Student s1, Student s2) {
                return s1.getFirstName().compareTo(s2.getFirstName());
            }
        });
        System.out.println("Students sorted by first name in ascending order");
        for(int j = 0; j < counter; j++){  
            System.out.println(studentArray[j]);
        }
    
        //sort based on score
        Arrays.sort(studentArray,0,counter, new Comparator<Student>(){
            @Override
            public int compare(Student s1, Student s2) {
                return Integer.valueOf(s1.getExamScore()).
                                   compareTo(Integer.valueOf(s2.getExamScore()));
            }
        });
        System.out.println("Students sorted by score in ascending order");
        for(int j = 0; j < counter; j++){  
            System.out.println(studentArray[j]);
        }
    
        //To compute the average:
        double sum = 0.0;
        for(int j = 0; j < counter; j++){  
            sum+=studentArray[j].getExamScore();
        }
        double average = (sum*1.0)/counter;
        System.out.println("Average Score = "+average );
    
    
        aScanner.close();
    }
    
于 2012-11-12T02:53:15.670 に答える
0

これは宿題なので、私はあなたに完全な答えを与えていません...しかし、ここにあなたが何に向けて取り組むべきかについての一般的な考えがあります...

import java.io.FileReader;
import java.util.Scanner;

public class App {

    public static void main( String[] args ) throws Exception {
        // TODO Auto-generated method stub

        Scanner aScanner = new Scanner( new FileReader( "src/scores.txt" ) );

        System.out.println( "Welcome to the Student Scores Application." );
        System.out.println();

        Student[] studentArray;

        String lastName;
        String firstName;
        int examScore = 0;
        double average = 0;

        int nStudent = 100;
        studentArray = new Student[nStudent];

        int counter = 0;

        while( aScanner.hasNext() ) {

            lastName = aScanner.next();
            firstName = aScanner.next();
            examScore = aScanner.nextInt();

            studentArray[counter] = new Student( lastName, firstName, examScore );

            System.out.println( "Student " + studentArray[counter].getFirstName() + " " +  studentArray[counter].getLastName() + "'s " + "Test Score is :" + studentArray[counter].getExamScore() );
            ++counter;
            if( counter >= nStudent ) {
                break;
            }
        }
    }

    static class Student implements Comparable<Student> {

        private String firstName;
        private String lastName;
        private int examScore;

        public Student( String firstName, String lastName, int examScore ) {
            this.firstName = firstName;
            this.examScore = examScore;
            this.lastName = lastName;
        }

        // Get & Set Methods
        public int getExamScore() {
            return examScore;
        }

        public String getFirstName() {
            return firstName;
        }

        public String getLastName() {
            return lastName;
        }

        @Override
        public int compareTo( Student s ) {

            if( !lastName.equalsIgnoreCase( s.lastName ) ) {

                return lastName.compareToIgnoreCase( s.lastName );
            }

            if( !firstName.equalsIgnoreCase( s.firstName ) ) {

                return firstName.compareToIgnoreCase( s.firstName );

            }

            return examScore - s.examScore;

        }

    }

}
于 2012-11-12T03:59:42.323 に答える