if (aCoder.isEmpty())
{
System.out.println("La chaine a coder est vide.\n");
}
else
{
System.out.format("La chaine a coder est : '%s'\n", aCoder);
System.out.format("La chaine codee est : '%s'\n", chaineCodee);
}
}
}
à la compilation il me genère ceci please de l'aide
java.lang.NoSuchMethodError: main
Exception in thread "main"
Alors ta configuration de démarrage est fausse.
Va dans le menu Run > Run configurations et sélectionne ton projet ainsi que la classe Crypto qui possède ta méthode main.