Algorithme
maxwell
-
alezan1 Messages postés 10 Statut Membre -
alezan1 Messages postés 10 Statut Membre -
Bonjour,
Je dois écrire un algo de décodage basé sur l'algo de Viterbi.
Voici l'énoncé de mon exo :
http://cjoint.com/data/bDaTjs5faT.htm
Ma question est la suivante.
Comment récupére-t-on la valeur du paramètre x ?
Merci
Je dois écrire un algo de décodage basé sur l'algo de Viterbi.
Voici l'énoncé de mon exo :
http://cjoint.com/data/bDaTjs5faT.htm
Ma question est la suivante.
Comment récupére-t-on la valeur du paramètre x ?
Merci
Configuration: Linux Firefox 1.5.0.9
A voir également:
- Algorithme
- Algorithme euromillion excel gratuit - Télécharger - Loisirs créatifs
- Algorithme ajout rapide snapchat - <a href="https://forums.commentcamarche.net/forum/snapchat-333">Forum Snapchat</a>
- Fonction puissance algorithme - <a href="https://forums.commentcamarche.net/forum/algorithmes-methodes-351">Forum Algorithmes / Méthodes</a>
- Algorithme de fibonacci - <a href="https://forums.commentcamarche.net/forum/programmation-3">Forum Programmation</a>
- Algorithme keno excel - <a href="https://forums.commentcamarche.net/forum/libreoffice-openoffice-146">Forum LibreOffice / OpenOffice</a>
1 réponse
Voici un petit exemple en java qui affiche la date plus l'argument
public static void main(String []args) {
// Make sure the command
// line argument was passed in
if(null == args || args.length < 1) {
// Command line argument
// doesn't exist, so exit with
// an error flag
System.exit(1);
}
// Timestamp the message
Date now = new Date();
String message = now.toString();
message += ": ";
// Extract the only command line
// argument from the first element
// of the array
message += args[0];
System.out.println(message);
}
public static void main(String []args) {
// Make sure the command
// line argument was passed in
if(null == args || args.length < 1) {
// Command line argument
// doesn't exist, so exit with
// an error flag
System.exit(1);
}
// Timestamp the message
Date now = new Date();
String message = now.toString();
message += ": ";
// Extract the only command line
// argument from the first element
// of the array
message += args[0];
System.out.println(message);
}