回答編集履歴

1

補足を追加

2020/08/13 12:45

投稿

Daregada
Daregada

スコア11990

test CHANGED
@@ -22,6 +22,30 @@
22
22
 
23
23
  }
24
24
 
25
+ ```
25
26
 
26
27
 
28
+
29
+ 追記:
30
+
31
+ そして、判定に使っている`r`フィールドの値も設定していませんよね。`makeHandStatus`の中で設定してください。
32
+
33
+
34
+
35
+ ```Java
36
+
37
+ void makeHandStatus() {
38
+
39
+ String[] hands = { "グー", "パー", "チョキ" };
40
+
41
+ Random rnd = new Random();
42
+
43
+ r = rnd.nextInt(3);
44
+
45
+ String hand = hands[r];
46
+
47
+ this.handstatus = hand;
48
+
49
+ }
50
+
27
51
  ```