Required: Variable Found: Value

走远了吗. 提交于 2019-12-06 08:19:48

You switched the operands in your assign statement.

Switch this

Math.abs(a[i]-a[i-1]) = biggestGap;

to this

biggestGap = Math.abs(a[i]-a[i-1]);

Math.abs(a[i]-a[i-1]) returns just an int value (no variable reference or similar). So your trying to assign a new value to a value. Which is not possible. You can just assign a new value to a variable.

You have reversed your assign statement. Change it to

biggestGap = Math.abs(a[i]-a[i-1]);

You are trying to assign the value of biggestGap to the number returned by Math.abs(). Naturally, you can't, because that value depends on what Math.abs() contains and how it handles its arguments.

Perhaps you meant the opposite:

biggestGap = Math.abs(a[i]-a[i-1]);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!