Java初心者です。
自分で勉強がてらに軽いソースコードを書いてみたのですが、コンパイルできません。
Exception in thread "main" java.lang.Error: Unresolved compilation problems:
型 Game のメソッド result() は引数 (int) に適用できません
型 Game のメソッド result() は引数 (int) に適用できません
構文エラーがあります。"}" を挿入して ClassBody を完了してください
at Game.main(Game.java:19)
public class Game { public static void main(String[] args) { //フィールド値 int a1; int a2; int a3; int a4; int b1; int b2; int b3; int b4; int m; m = Maxmin.solve(a1 , a2 , a3 , a4); result(m); m = Maxmin.solve(b1 , b2 , b3 , b4); result(m); } public static void result (m){ if (m == 1) { System.out.println("player 1’s maxmin strategy is X."); } else if (m == 2) { System.out.println("player 1’s maxmin strategy is Y."); } else if (m == 3) { System.out.println("player 1’s maxmin strategy is X,Y."); } } }
public class Maxmin { static int solve(int x1 , int x2 , int y1, int y2) { int gX , gY; gX = (x1 < x2) ? x1 : x2; gY = (y1 < y2) ? y1 : y2; int res = 0; if (gX > gY) res = 1; else if(gX < gY) res = 2; else res =3; return res; } } コード
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。