java: how for loop work in the case of BigInteger

Posted by Sanjeev on Stack Overflow See other posts from Stack Overflow or by Sanjeev
Published on 2010-06-11T15:43:47Z Indexed on 2010/06/11 16:12 UTC
Read the original article Hit count: 211

Filed under:
|

I want to take Input from the user as Big-Integer and manipulate it into a For loop

BigInteger i;

for(BigInteger i=100000;i<=1;i--){

    i=i+i;

}

But it won't work

can any body help me.

© Stack Overflow or respective owner

Related posts about java

Related posts about biginteger