簡體   English   中英

如何打印兩種不同的數據類型 arrays?

[英]How to print two different data type arrays?

任何人都可以幫忙嗎? 選擇 2 不起作用。 假設在用戶輸入員工姓名時顯示員工 ID,但當用戶輸入姓名時,什么都不會打印。 代碼沒有錯誤。

public static void main(String[] args) {
int[] emplID={ 42577, 38611, 32051, 28627, 42061, 79451 };//employee ID
int ID = employeeID(emplID);
String[] emplNames= { "Bruce Wayne", "Barry Allen", "Hal Jordan", "Dinah Lance", "Oliver Queen", "Tineil Charles" };// Employee Names
search(emplNames, emplID);
//methods called from main


}

public static int employeeID(int [] emplID) {
    //check ID length
    for(int i=0; i< emplID.length; i++) {
        if((emplID[i] > 10000)&&(emplID[i] < 99999)) {
        System.out.print(emplID[i] + " - Valid ID length\n");

        }
        else {
            System.out.println(emplID[i] + " - Invalid ID! ID must be Five digits!\n");

        }//end of check length

        //check if ID is prime
         boolean isPrime = true;
            for (int j = 2; j < emplID[i]; j++) {
                if (emplID[i] % j == 0) {
                    System.out.println(emplID[i] + " - not prime");
                    isPrime = false;
                    break;
                } 
            }
            if(isPrime) System.out.println(emplID[i] + " - valid prime");//end of check prime
        }//end of employeeID method
    return 0;

}// end of ID checker

// 搜索員工數據 public static void search(String[] emplNames, int[]emplID) {

        Scanner scan= new Scanner(System.in);
        //Menu Choice
        System.out.println("Please choose 1 to enter Employee ID or 2 to enter Employee Name:" );           

        int num = scan.nextInt();//input choice

        // Choice 1 to enter ID to display name
            if (num == 1) {
            System.out.println("Please enter Employee ID:");
            int searchID= scan.nextInt();
            for(int ID = 0; ID < emplID.length; ID++) {
            if (searchID == (emplID[ID])){
            System.out.println("Name: "+ emplNames[ID]);
        }
    }
            }
        // Choice 2 to enter name to display ID
            else if(num == 2) {
            System.out.println("Please enter Employee Name");
            String searchName= scan.next();
            for(int ID = 0; ID< emplID.length; ID++){
            if ((searchName.equals(emplNames[ID]))){
            System.out.println("ID: " + emplID[ID]);
            }
            }
            }   
            else 
                System.out.println("Employee Not Found");
}
}

我復制並粘貼了您的代碼並在我的機器上運行它。 是的,選擇 2 也不適合我。

在完全閱讀您的代碼之前,我的直覺是失敗的原因是使用掃描儀 class 來獲取員工的姓名。 我過去也遇到過類似的問題,最好的辦法是學習使用 InputStreamReader 和 BufferedStreamReader 對象。

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

public class Main {

1:我沒有對你的 main() 做任何事情

public static void main(String[] args) {
    int[] emplID={ 42577, 38611, 32051, 28627, 42061, 79451 };//employee ID
    int ID = employeeID(emplID);
    String[] emplNames= { "Bruce Wayne", "Barry Allen", "Hal Jordan", "Dinah Lance", "Oliver Queen", "Tineil Charles" };// Employee Names
    search(emplNames, emplID);
}

2:我沒有對你的employeeID() function 做任何事情

public static int employeeID(int [] emplID) {
    //check ID length
    for(int i=0; i< emplID.length; i++) {
        if((emplID[i] > 10000)&&(emplID[i] < 99999)) {
            System.out.print(emplID[i] + " - Valid ID length\n");

        }
        else {
            System.out.println(emplID[i] + " - Invalid ID! ID must be Five digits!\n");

        }//end of check length

        //check if ID is prime
        boolean isPrime = true;
        for (int j = 2; j < emplID[i]; j++) {
            if (emplID[i] % j == 0) {
                System.out.println(emplID[i] + " - not prime");
                isPrime = false;
                break;
            }
        }
        if(isPrime) System.out.println(emplID[i] + " - valid prime");//end of check prime
    }//end of employeeID method
    return 0;

}// end of ID checker

3:在您的 search() 方法中,我首先創建了 InputStreamReader 和 BufferedReader:

public static void search(String[] emplNames, int[]emplID) {
    InputStreamReader in = new InputStreamReader(System.in);
    BufferedReader buff = new BufferedReader(in);

    //Menu Choice
    System.out.println("Please choose 1 to enter Employee ID or 2 to enter Employee Name:" );
    int num = 0;
    try {
        num = Integer.parseInt(buff.readLine());
    } catch (Exception e) {
        e.printStackTrace();
    }

4:由於選項 1 工作正常,我所做的只是將您的 for 循環更改為 for-each 循環以使其更易於閱讀。

    // Choice 1 to enter ID to display name
    if (num == 1) {
        System.out.println("Please enter Employee ID:");
        int searchID = 0;
        try {
            searchID = buff.read();
        } catch (Exception e) {
            e.printStackTrace();
        }

        for (int i : emplID) {
            if (searchID == i) {
                System.out.println("Name: " + emplNames[i]);
            }
        }

5:這是我為使您的第二個選項起作用所做的工作。 同樣,通過 BufferedReader 對象的 readLine() 方法從用戶那里獲取字符串。 然后,它只是讓您的 for 循環搜索匹配項。 而已。 之后,我運行該程序並針對您上面的所有名稱進行了測試,工作正常。

    } else if (num == 2) {
        System.out.println("Please enter Employee Name");
        String searchName = "";
        try {
            searchName = buff.readLine();
        } catch(Exception e) {
            e.printStackTrace();
        }

        for(int ID = 0; ID< emplID.length; ID++){
            if ((searchName.equals(emplNames[ID]))){
                System.out.println("ID: " + emplID[ID]);
            }
        }
    } else {
        System.out.println("Employee Not Found");
    }
  }
}

6:是的,掃描儀有一個問題,它要么無法讀取整行,要么您需要在獲取輸入之前刷新 stream。 它在一堆簡單的程序中給我帶來了很多問題。 然后我切換到使用 InputStreamReader 和 BufferedStreamReader 組合。 只需將它們包裝在 try-catch 塊中,就可以了。 研究一下,它會讓你的代碼行為和你的生活更輕松。

7:我希望這會有所幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM