I have a question about a piece of code that I am trying to translate into another language. Unfortunately, I am not very versed in Java. In particular, in the following snippet of code, there is a line with 'i-'. At first, I thought this was some sort of decrement operator, however, I haven't been able to verify that in the literature or online. It's kind of difficult for search engines to interpret the natural meaning of my question. So, I've come to ask for help here. Can anyone help me interpret the meaning of this? I thought decrement operators in java were either like 'i--' or 'i-='.
{
int quo=n,rem,i=count-1;
while (quo!=0)
{
rem=quo%10;
arr[i]=rem;
i-;
quo/=10;
}
}
i-is new to me :) – Kaipa M Sarma Nov 14 '12 at 2:13