我计算了数组中的所有具体数字但是我一直收到错误int cannot be converted to int[]
。
之前已在程序中定义变量val
和two
,因此这不是错误。
public static int[] removeVal(int[] two, int val)
{
int count=0;
for (int a=0; a<two.length; a++)
{
if (two[a]==val)
count++;
}
return count;
}
答案 0 :(得分:-1)
该方法返回一个int数组,但是你只返回一个int,而不是一个int数组。