java: how for loop work in the case of BigInteger
- by Sanjeev
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.