サイズ5の文字列でペアを見つけるのに問題があります。したがって、2つのペアしか存在できません。私が見つけたすべてのペアについて、スコアを2ポイント上げる必要があります。 これまで私がこれまで持っていたことはありますが、間違っています。5つのペアの検索
String temp = "4 5 4 3 3";
String tempLine = temp.replaceAll(" ", "");
String[] hand = temp.split(" ");
for(int i = 0; i < hand.length; i++)
{
if(hand[i].equals(tempLine.substring(0, 1)) && i !=0)
score += 1;
if(hand[i].equals(tempLine.substring(1, 2)) && i != 1)
score += 1;
if(hand[i].equals(tempLine.substring(2, 3)) && i!= 2)
score += 1;
if(hand[i].equals(tempLine.substring(3, 4)) && i!= 3)
score += 1;
if(hand[i].equals(tempLine.substring(4)) && i != 4)
score += 1;
}
編集:私はこの手を探してループものの
もっとコードを教えてもらえますか?そしてあなたの達成しようとしていることについてもっと説明してください! – Michael