Resolution de cette exerice en java
Fermé
addour
-
8 nov. 2009 à 12:52
tarek_dotzero Messages postés 817 Date d'inscription jeudi 19 juillet 2007 Statut Membre Dernière intervention 12 avril 2022 - 8 nov. 2009 à 13:11
tarek_dotzero Messages postés 817 Date d'inscription jeudi 19 juillet 2007 Statut Membre Dernière intervention 12 avril 2022 - 8 nov. 2009 à 13:11
A voir également:
- Resolution de cette exerice en java
- Waptrick java football - Télécharger - Jeux vidéo
- Jeux java itel football - Télécharger - Jeux vidéo
- Java apk - Télécharger - Langages
- Cette resolution n'est pas prise en charge par cette tv modifiez la ✓ - Forum Format et connectique vidéo
- Jeux java itel 5360 ✓ - Forum Jeux vidéo
1 réponse
tarek_dotzero
Messages postés
817
Date d'inscription
jeudi 19 juillet 2007
Statut
Membre
Dernière intervention
12 avril 2022
121
8 nov. 2009 à 13:11
8 nov. 2009 à 13:11
Un paramètre pour Avancer() ou non? (nombre de positions)
Anyway:
Ou quelque chose comme ça.
Anyway:
public class Robot { int orientation; int abs, ords; public Robot(int _orientation, int _abs, int _ords) { orientation = _orientation; abs = _abs; ords = _ords; } public void Avancer() { switch(oriantation) { case 1: abs++; break; case 2: ords++; break; case 3: abs--; break; case 4: ords--; break; } } public vois Tourner(int nouvelleOrientation) { orientation = nouvelleOrientation; } public void Afficher() { System.out.println("Orientation:" + orientation + "\nPosition: (" + abs + "," + ords + ")"); } }
Ou quelque chose comme ça.