bool judge(int a[],int a1)//0 到 a1-1 为要判断的数组元素
{
for (int i = 0;i < a1;i++)
{
if (a[i] != a[0]) return FALSE;
}
return TRUE;
}
bool judge(int a[],int a1)//0 到 a1-1 为要判断的数组元素
{
for (int i = 0;i < a1;i++)
{
if (a[i] != a[0]) return FALSE;
}
return TRUE;
}