質問編集履歴

3

誤字がありましたので修正。

2020/04/21 12:51

投稿

M_L_R_DsoM_1989
M_L_R_DsoM_1989

スコア4

test CHANGED
File without changes
test CHANGED
@@ -652,7 +652,7 @@
652
652
 
653
653
  */
654
654
 
655
- //String f =getGameResults(CardConst.GAME_RESULT_FILE);
655
+
656
656
 
657
657
  void file(){
658
658
 

2

誤字がありましたので消しました。

2020/04/21 12:51

投稿

M_L_R_DsoM_1989
M_L_R_DsoM_1989

スコア4

test CHANGED
File without changes
test CHANGED
@@ -636,39 +636,67 @@
636
636
 
637
637
  }
638
638
 
639
+
640
+
641
+
642
+
643
+ /*
644
+
645
+ *0(要素0)
646
+
647
+ *勝(要素1)
648
+
649
+ *0(要素2)
650
+
651
+ *敗(要素3)
652
+
653
+ */
654
+
655
+ //String f =getGameResults(CardConst.GAME_RESULT_FILE);
656
+
639
- /*int winlose(){
657
+ void file(){
658
+
640
-
659
+ String s= CardConst.GAME_RESULT_FILE;
660
+
641
- int win=0;
661
+ s.substring(0,1);
642
-
662
+
643
- // プレイヤーのカードを出力する
663
+ int win =Integer.parseInt(s);
664
+
665
+ s.substring(2,3);
666
+
667
+ int lose=Integer.parseInt(s);
668
+
669
+
670
+
671
+
672
+
673
+
644
674
 
645
675
  if (player2_cards.size() == 0) {
646
676
 
647
- win=win+1;
677
+
648
-
649
-
650
-
651
- // プレイヤーのカードが0枚の場合はプレイヤーの勝ち
678
+
679
+
652
680
 
653
681
  System.out.println(CardConst.WIN_MSG);
654
682
 
655
683
  continue_game = false;
656
684
 
685
+
686
+
657
- return win;
687
+ win++;
658
-
659
-
660
-
688
+
689
+
690
+
661
- }
691
+ }
662
-
663
- int lose=0;
692
+
664
-
665
-
666
-
667
- // 相手のカードを出力する
693
+
668
-
694
+
669
- if (player1_cards.size() == 0) {
695
+ if (player1_cards.size() == 0) {
670
-
671
- lose=lose+1;
696
+
697
+
698
+
699
+
672
700
 
673
701
 
674
702
 
@@ -678,90 +706,6 @@
678
706
 
679
707
  continue_game = false;
680
708
 
681
- return lose;
682
-
683
-
684
-
685
-
686
-
687
- }
688
-
689
- return lose;
690
-
691
-
692
-
693
- }*/
694
-
695
- //
696
-
697
-
698
-
699
- /*
700
-
701
- *0(要素0)
702
-
703
- *勝(要素1)
704
-
705
- *0(要素2)
706
-
707
- *敗(要素3)
708
-
709
- */
710
-
711
- //String f =getGameResults(CardConst.GAME_RESULT_FILE);
712
-
713
- void file(){
714
-
715
- String s= CardConst.GAME_RESULT_FILE;
716
-
717
- s.substring(0,1);
718
-
719
- int win =Integer.parseInt(s);
720
-
721
- s.substring(2,3);
722
-
723
- int lose=Integer.parseInt(s);
724
-
725
-
726
-
727
-
728
-
729
-
730
-
731
- if (player2_cards.size() == 0) {
732
-
733
-
734
-
735
-
736
-
737
- System.out.println(CardConst.WIN_MSG);
738
-
739
- continue_game = false;
740
-
741
-
742
-
743
- win++;
744
-
745
-
746
-
747
- }
748
-
749
-
750
-
751
- if (player1_cards.size() == 0) {
752
-
753
-
754
-
755
-
756
-
757
-
758
-
759
- // 相手のカードが0枚の場合は、プレイヤーの負け
760
-
761
- System.out.println(CardConst.LOSE_MSG);
762
-
763
- continue_game = false;
764
-
765
709
 
766
710
 
767
711
  lose++;

1

追記ですが、別クラスより出力用のメソッド等は実装済みです。

2020/04/21 12:49

投稿

M_L_R_DsoM_1989
M_L_R_DsoM_1989

スコア4

test CHANGED
File without changes
test CHANGED
@@ -828,4 +828,8 @@
828
828
 
829
829
 
830
830
 
831
+
832
+
833
+ コード
834
+
831
835
  ```