Bonsoir,
Je débute en java et j´ai un problème avec mon code:
class Tableau
{
public static void main(String[] args)
{
int[] tab;
int taille=16;
tab=new int[taille];
System.out.print("[");
System.out.print("| ");
System.out.print(tab[taille]);
System.out.print("]");
}
}
Pour le moment je cherche juste à afficher le tableau, mon erreur est
java.lang.NoClassDefFoundError: Eratosthene
Exception in thread "main"
Quelqu´un saurait où se trouve le prob?
Merci bien =]