0

課題へのリンク: http://i.imgur.com/fc86hG9.png

一連の数値を取り、それらをループなしで配列に適用する方法を見分けるのに少し苦労しています。それだけでなく、それらを比較するのに少し苦労しています。私がこれまでに書いたことは次のとおりです。

import java.util.Scanner;

public class Lottery {

public static void main(String[] args) {
 int userInputs[] = new int[5];
 int lotteryNumbers [] = new int[5];
 int matchedNumbers =0;
 char repeatLottery = '\0';


    Scanner in = new Scanner (System.in);

    do{
        System.out.println("Enter your 5 single-digit lottery numbers.\n (Use the spacebar to separate digits): ");
            for(int i = 0; i <5; i++ )
            userInputs[i] = in.nextInt();

            System.out.println("Your inputs: ");
            printArray(userInputs);

        System.out.println("\nLottery Numbers: ");
        readIn(lotteryNumbers);
        for(int i=0; i<5; i++) {
            System.out.print(lotteryNumbers[i] + " ");
        }

        matchedNumbers = compareArr(userInputs, lotteryNumbers);

        System.out.println("\n\nYou matched " + matchedNumbers + " numbers");



        System.out.println("\nDo you wish to play again?(Enter Y or N): ");
         repeatLottery = in.next().charAt(0);
    }
    while (repeatLottery == 'Y' || repeatLottery == 'y');

}
public static void printArray(int arr[]){

    int n = arr.length;

    for (int i = 0; i < n; i++) {
        System.out.print(arr[i] + " ");
    }
}

public static void readIn(int[] List) {
    for(int j=0; j<List.length; j++) {
        List[j] = (int) (Math.random()*10);
    }
}

public static int compareArr (int[] list1, int[] list2) {
    int same = 0;
    for (int i = 0; i <= list1.length-1; i++) {
        for(int j = 0; j <= list2.length-1; j++) {
            if (list1[i] == list2[j]) {
                same++;


            }

        }
    }
    return same;
}

}

お気づきのとおり、入力行の処理方法がよくわからないため、入力行をコメントアウトしました。それらを配列に入れれば、かなり簡単に比較できるはずです。これは、配列を扱う最初の割り当てであり、クラス期間が 1 つしかないということは、少し詳細に思えると思います。ですから、私の無知をお許しください。:P

編集:

最後に数字を比較する新しい方法を追加しましたが、問題は、位置ごとではなく、一般的にそれらを比較することです。それが今の大きな問題のようです。

4

1 に答える 1

1

あなたの質問は 100% 明確ではありませんが、最善を尽くします。1- ユーザーからの入力の読み取りに問題はありません

int[] userInput = new int[5]; // maybe here you had a mistake
int[] lotterryArray = new int[5]; // and here you were declaring your arrays in a wrong way
Scanner scanner = new Scanner(system.in);
for ( int i = 0 ; i < 5 ; i++)
{
 userInput[i] = scanner.nextInt();
} // this will populate your array try to print it to make sure

編集:割り当てについて共有したリンクで重要なのは、比較で値と場所を確認する必要があるため、宝くじ配列の入力1に2つ5つある場合、それらは同じ場所にある必要があるため、割り当てを再度確認する必要があります

// to compare
int result = 0 ; // this will be the number of matched digits
for ( int i = 0 ; i < 5 ; i++)
{
   if ( userInput[i] == loterryArray[i] )
       result++
}
// in this comparsion if the digits are equale in value and location result will be incremented  
于 2013-03-28T00:50:13.773 に答える