17 lines
332 B
Java
17 lines
332 B
Java
import static utils.Utils.*;
|
|
|
|
public class CesarChiffre {
|
|
|
|
public static final void main(String[] args) {
|
|
afficher("Chiffre de César - chiffrement");
|
|
testCesar(CesarChiffre::cesar, true);
|
|
}
|
|
|
|
public static char[] cesar(char[] in, int k) {
|
|
// Pour le caractère espace, pas de transformation
|
|
|
|
return in;
|
|
}
|
|
|
|
}
|