我想检查整数是增加还是减少,然后再做一些事情。
int x = 0;
int y = 0;
如果x
值增加,y --;
谢谢!
答案 0 :(得分:2)
//loop starts
//X gets modified
if(X>tempX)
{
//X increments
}
else if (X<tempX)
{
//X decrements
}
else
//X remains the same
int tempX=X;
//loop ends