blastman just me ! | Bonjour tout le monde !
Voila, quand je compile ce programme le compilateur m'indique l' erreur suivante:
Code :
- Moyenne2.java:37: cannot resolve symbol
- symbol : method showMessageDialog (<null>,java.lang.String,int)
- location: class javax.swing.JOptionPane
- JOptionPane.showMessageDialog( null, "La moyenne de la classe est de "
- + deuxChiffres.format( moyenne ), JOptionPane.INFORMATION_MESSAGE );
- ^
- 1 error
|
et dans mon programme, je ne vois pas d'erreur pouvez vous m'aidé SVP
voila mon prog. :
Code :
- import java.text.DecimalFormat;
- import javax.swing.JOptionPane;
- public class Moyenne2 {
- public static void main( String args[] )
- {
- int compteurNote, valeurNote, total;
- double moyenne;
- String entree;
- total = 0;
- compteurNote = 0;
- entree = JOptionPane.showInputDialog( "Entrez une note entière ou -1 pour quitter :" );
- valeurNote = Integer.parseInt( entree );
- while ( valeurNote != -1 )
- {
- total = total + valeurNote;
- compteurNote = compteurNote + 1;
- entree = JOptionPane.showInputDialog( "Entrez une note entière ou -1 pour quitter :" );
- valeurNote = Integer.parseInt( entree );
- }
- DecimalFormat deuxChiffres = new DecimalFormat( "0.00" );
- if ( compteurNote != 0 )
- {
- moyenne = (double) total / compteurNote;
- JOptionPane.showMessageDialog( null, "La moyenne de la classe est de " + deuxChiffres.format( moyenne ), JOptionPane.INFORMATION_MESSAGE );
- }
- else
- {
- JOptionPane.showMessageDialog( null, "Aucune note n'a été entrée", "Moyenne d'une classe", JOptionPane.INFORMATION_MESSAGE );
- System.exit( 0 );
- }
- }
- }
|
Message édité par blastman le 07-02-2005 à 17:07:22 ---------------
http://www.blastmanu.info
|