(<= débutant) [java] cannot find symbol
Résolu/Fermé
PBEO8854
Messages postés
2
Date d'inscription
mardi 1 mai 2007
Statut
Membre
Dernière intervention
1 mai 2007
-
1 mai 2007 à 12:45
PBEO8854 Messages postés 2 Date d'inscription mardi 1 mai 2007 Statut Membre Dernière intervention 1 mai 2007 - 1 mai 2007 à 19:36
PBEO8854 Messages postés 2 Date d'inscription mardi 1 mai 2007 Statut Membre Dernière intervention 1 mai 2007 - 1 mai 2007 à 19:36
A voir également:
- (<= débutant) [java] cannot find symbol
- 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
- Numero symbol ✓ - Forum Word
- Jeux java itel touche ✓ - Forum Logiciels
2 réponses
ekra
Messages postés
1870
Date d'inscription
vendredi 15 avril 2005
Statut
Membre
Dernière intervention
24 juillet 2014
342
1 mai 2007 à 15:14
1 mai 2007 à 15:14
Bonjour,
Je pense qu'il faut que tu déclares "note" avant...
Tu switch "note" mais c'est égal à quoi ? ce n'est même pas défini !
Je pense qu'il faut que tu déclares "note" avant...
Tu switch "note" mais c'est égal à quoi ? ce n'est même pas défini !
public class note { public static void main (String args[]) { int note; // Déclarartion note=6; // Définition switch (note) { case 0: case 1: case 2: System.out.println("Très insuffisant."); break; case 3: case 4: System.out.println("Insuffisant."); break; case 5: case 6: System.out.println("Moyen."); break; case 7: case 8: System.out.println("Bien."); break; case 9: case 10: System.out.println("Très bien."); break; default : System.out.println("Note impossible."); } } }
PBEO8854
Messages postés
2
Date d'inscription
mardi 1 mai 2007
Statut
Membre
Dernière intervention
1 mai 2007
1 mai 2007 à 19:36
1 mai 2007 à 19:36
ça marche merci