Main.java:1: error: class main is public, should be declared in a file named main.java
public class main{
^
Main.java:11: error: modifier private not allowed here
private class Generador {
^
Main.java:14: error: cannot find symbol
private final BigInteger CERO = BigInteger.CERO;
^
symbol: class BigInteger
location: class Generador
Main.java:15: error: cannot find symbol
private final BigInteger UNO = BigInteger.ONE;
^
symbol: class BigInteger
location: class Generador
Main.java:16: error: cannot find symbol
private final BigInteger D6 = BigInteger.SIXTEEN;
^
symbol: class BigInteger
location: class Generador
Main.java:32: error: cannot find symbol
private String Int2BaseR(BigInteger num, BigInteger base){
^
symbol: class BigInteger
location: class Generador
Main.java:32: error: cannot find symbol
private String Int2BaseR(BigInteger num, BigInteger base){
^
symbol: class BigInteger
location: class Generador
Main.java:4: error: incompatible types: possible lossy conversion from int to byte
Generador gen = new Generador(49374); //Iniciamos el generador con el n?mero m?gico
^
Main.java:5: error: semilla has private access in Generador
gen.semilla = "wow.sinfocol.org"; //Inicializamos la semilla
^
Main.java:14: error: cannot find symbol
private final BigInteger CERO = BigInteger.CERO;
^
symbol: variable BigInteger
location: class Generador
Main.java:15: error: cannot find symbol
private final BigInteger UNO = BigInteger.ONE;
^
symbol: variable BigInteger
location: class Generador
Main.java:16: error: cannot find symbol
private final BigInteger D6 = BigInteger.SIXTEEN;
^
symbol: variable BigInteger
location: class Generador
Main.java:28: error: cannot find symbol
while(i < len) tmp += (tmp << 3) + str.codePointbefore(i++);
^
symbol: method codePointbefore(int)
location: variable str of type String
Main.java:29: error: cannot find symbol
return Int2BaseR(BigInteger.valueOf(tmp), D6);
^
symbol: variable BigInteger
location: class Generador
Main.java:41: error: incompatible types: String cannot be converted to int
return String.valueOf( cambExp[(int) num] );
^
Note: Some messages have been simplified; recompile with -Xdiags:verbose to get full output
15 errors