-3

チップがボード上の数字と一致するとJTextfieldが黄色になるビンゴゲームを持っています

                    if (B1.setBackground(Color.YELLOW) && I1.setBackground(Color.YELLOW)...){
                        System.out.println("BINGO");
                    }

しかし、それは機能していません。私がやろうとしていることを実際に行う方法はありますか?

4

1 に答える 1

0

コード構造は次のようになります。

if (a chip matches a number on the board) {
   set background color for JTextfield to yellow;
   System.out.println("BINGO"); // <---- if this what you require
}
于 2013-10-21T01:00:10.720 に答える