Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ウィキペディアからアルファベータ剪定を書きました。コネクト フォー AI を作成しようとしています。関数は列番号を返す必要があり、メイン関数が動きます。
あなたの問題は、私が信じているこの行にあります:
if(temp[i][column-1] == '0')
tempint 配列です。だけ比較する必要があり0ます。'0'Java が整数 (48) として解釈する文字 0 を意味します。とにかく、これを使用する必要があります:
temp
0
'0'
if(temp[i][column-1] == 0)