我如何在 n 个骰子中找到最高的一对(两个骰子)。 c代码

How do I find the highest pair(two dices) among n amount of dice. c code

如果我作为示例角色 5 个骰子,值为 2 4 4 5 2 代码将吐出“你得分:4”。

如何获得骰子中最高的一对?

这是部分代码。

void Pairs(int n, char* Lower_score1, int* dies)
{
  int i, j;

  printf("Pairs:\t");

  roll_multiple_dies(n, dies);
  for ( i = 0; i < n; i++)
  {
    for ( j = 0; j < n; j++)
    {
      if (dies[i] == dies[j] && j != i)
        Lower_score1[0] += dies[i] && dies[j];
    }
  }
  printf(" You scored: %d\n", Lower_score1[0]);
} 

我假设 roll_multiple_dies(n, dies); 将用 n 卷填充数组。然后做类似的事情:

roll_multiple_dies(n, dies);
int cnt_arr[7] = { 0 };
for(i=0; i<n; ++i)
{
    ++cnt_arr[dies[i]];  // Count the number of times each roll result appear
}

然后检查最高对。

“蛮力”方式:

if (cnt_arr[6] >= 2) puts("12");
else if (cnt_arr[5] >= 2) puts("10");
else ...
...
else if (cnt_arr[1] >= 2) puts("2");
else puts("No pairs found");