You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
298 B
19 lines
298 B
package questioncomplementaire;
|
|
|
|
public abstract class AlgoCodage {
|
|
|
|
protected String nom;
|
|
|
|
public abstract String encode(String s);
|
|
|
|
public abstract String decode(String s);
|
|
|
|
public String getNom() {
|
|
return nom;
|
|
}
|
|
|
|
@Override
|
|
public abstract String toString();
|
|
|
|
|
|
}
|
|
|