0

私の課題では、野球選手のドラフトを決定するのに役立つプログラムを作成することになっています。プログラムはスカウトにプレーヤーに関する情報を入力するように促し、それを配列に保存します。次に配列をチェックし、25 歳未満で打率.280 以上の選手のリストを表示します。リストは年齢順にソートする必要があります。

ああ、メニューは必須です。

私の問題は、タイトル以外の出力が得られないことです! ソートじゃないの?if文が機能していませんか?どうしたの!?

プレーヤークラスは次のようになります。

public class players 
{
    String name;
    String position;
    int age;
    double average;
}

これが私のコードです:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class BlueJays 
{    
    static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));  
    static players[] arr;

public static void main(String[] args) throws IOException 
{
    String quit = "n";
    while("n".equals(quit))
    {
        //display menu
        System.out.println("Toronto Blue Jays Drafting Program - Main Menu");
        System.out.println("1) Input Blue Jays data");
        System.out.println("2) Display possible draft choices");      
        System.out.println("3) Quit program");
        System.out.print("Please choose an option by inputting the number of your choice: ");
        String choiceString = br.readLine();
        int choice = Integer.parseInt(choiceString);

        if(choice == 1)
        {
            inputInfo();
        }else if(choice == 2)
        {
            sortInfo();
        }else if(choice == 3)
        {
            System.out.println("Are you sure you want to quit? (y/n) ");  
            quit = br.readLine();
        }else
        {
            System.out.println("Not a valid option.");
        }                  
    }
}

//method to input names of Blue Jays
public static void inputInfo() throws IOException
{  
    players temp = new players();
    System.out.print("How many players would you like to enter? ");
    int x = Integer.valueOf(br.readLine()).intValue();
    arr = new players[x];     

    //loop through players
    for(int i = 0; i < arr.length; i++)
    {

        System.out.println("Enter player information.");

        System.out.println("Input first and last name: ");
        String name = br.readLine();
        temp.name = name;       

        System.out.println("Input position: ");
        String position = br.readLine();
        temp.position = position;

        System.out.println("Input batting average (e.g. .246): ");
        String averageString = br.readLine();
        temp.average = Double.parseDouble(averageString);

        System.out.println("Input age: ");
        temp.age = Integer.parseInt(br.readLine());
        System.out.println(" ");

        // Copy the software name and quantity to the global variables
        arr[i] = temp;
    }   
}

//method to sort and display info
public static void sortInfo()
{              
    //sort by quantity
    for(int i = 0; i < arr.length; i++)
    {
        for(int j = i+1; j < arr.length; j++)
        {
            if(arr[i].age > arr[j].age)
            {
                players  temp = arr[j];
                arr[j] = arr[i];
                arr[i] = temp;
            }
        }

    }            
    System.out.println("Draft Choices 2013");        
    //output
    for(int i = 0; i < arr.length; i++)
    {
        if (arr[i].age <= 25 && arr[i].average >= 0.280)
        {
            System.out.println("Name: " + arr[i].name);    
            System.out.println("Age: " + arr[i].age);
            System.out.println("Position: " + arr[i].position);
            System.out.println("Batting average: " + arr[i].average);
            System.out.println("   ");        
        }            

    }
    }
}

私はこれをすぐに手渡す必要があるので、どんな助けも大歓迎です! 前もって感謝します!

4

1 に答える 1