I have a problem
import java.math.BigInteger;
import java.io.*;
import java.util.*;
import java.lang.*;
public class medici {
public static void main(String[] arg) {
{
BigInteger zac = new BigInteger("3");
zac = zac.pow(399);
BigInteger kon = new BigInteger("3");
kon = kon.pow(400);
BigInteger nul = new BigInteger("0");
BigInteger jed = new BigInteger("1");
BigInteger detel = new BigInteger("3");
for (BigInteger a = zac; a.compareTo( kon ) <= 0; a = a.add(jed)) {
cis = a ; // THIS A PROBLEM
String retez = "";
while ( cis > 0 ); // THIS IS A PROBLEM
retez = ( cis.mod(detel) ) + retez;
cis = cis.divide(detel);
System.out.println(retez);
}
}
}
}
Ive tried this formula BigInteger cis = new BigInteger("a"); for this cis = a ;
and while ( cis.compareTo( nul ) > 0 ); for this while ( cis > 0 );
but it doesnt work and I dont know why.
when I use this formula, this is the same, but I used only integer when I use the same for Big Integer It doesnt work
import java.io.*;
import java.util.*;
import java.lang.*;
public class netik {
public static void main(String[] arg) {
{
int a ;
int cis;
int detel = 3;
for ( a = 567880; a <= 567890; a++ ){
cis = a;
String retez = "";
while (cis > 0) {
retez = (cis % detel) + retez;
cis /= detel;
}
System.out.println(retez);
}
}
}
}
cisdeclared? – jjnguy♦ Nov 10 '10 at 15:58