前提・実現したいこと
数あてゲームを作っています。
発生している問題・エラーメッセージ
配列変数answerArrayと、inputArrayには、
一桁ずつ数字が格納されます。
answerArrayとinputArrayで、一致している桁がある場合に
変数hitCount(部分正解の数)をインクリメントしているつもりなのですが、
なぜか0のままで動きません・・・。
どなたかお力添えいただけませんでしょうか。
該当のソースコード
Java
1package kazuate_15_4; 2 3public class Main { 4 public static void main(String[] args) { 5 System.out.println("数あてゲームをはじめます!"); 6 QuizMan q = new QuizMan(); 7 8 do { 9 q.makesAQuestion(); 10 q.compares();} 11 while(q.judges()); 12 } 13 14} 15--- 16package kazuate_15_4; 17 18public class QuizMan { 19 20 private final int ANSWER_LENGTH = 3; 21 private int inputCount = 0; 22 private int hitCount = 0; 23 private String answer; 24 private String[] answerArray; 25 private String input; 26 private String[] inputArray; 27 28 public QuizMan() { 29 this.answer = ""; 30 31 for (int i = 0; i < this.ANSWER_LENGTH; i++) { 32 int num = new java.util.Random().nextInt(9) + 1; 33 this.answer += num; 34 } 35 36 this.answerArray = this.answer.split(""); 37 38 // // テスト 39 // for (int j = 0; j < this.answerArray.length; j++) { 40 // System.out.println(this.answerArray[j]); 41 // } 42 } 43 44 public void makesAQuestion() { 45 System.out.println("各桁ごとに1~9の範囲で、" + this.ANSWER_LENGTH + "桁の数字を入力してください"); 46 String str = new java.util.Scanner(System.in).nextLine(); 47 this.checksInput(str); 48 } 49 50 public void checksInput(String str) { 51 if (str.contains("0")) { 52 System.out.println("0が含まれています。最初からやりなおし\n"); 53 this.makesAQuestion(); 54 } else if (str.length() != this.ANSWER_LENGTH) { 55 System.out.println("桁数がまちがっています。最初からやりなおし\n"); 56 this.makesAQuestion(); 57 } else { 58 this.input = str; 59 this.inputArray = this.input.split(""); 60 } 61 } 62 63 public void compares() { 64 65 // // テスト 66 // for (int k = 0; k < this.answerArray.length; k++) { 67 // System.out.println(inputArray[k]); 68 // } 69 70 for (int i = 0; i < answerArray.length; i++) { 71 if (this.answerArray[i] == this.inputArray[i]) { 72 this.hitCount++; 73 } 74 } 75 76 // // テスト 77 // System.out.println(this.hitCount); 78 } 79 80 public boolean judges() { 81 if (this.hitCount == 3) { 82 System.out.println("あたり!おめでとうございます"); 83 return false; 84 } else { 85 System.out.println("はずれ!部分正解:" + this.hitCount); 86 System.out.println("最初からやりなおし\n"); 87 88 this.inputCount++; 89 this.hitCount = 0; 90 91 return true; 92 } 93 94 } 95}
回答1件
あなたの回答
tips
プレビュー