Accueil > > > CALCULATRICE SCIENTIFIQUE
CALCULATRICE SCIENTIFIQUE
Information sur la source
Description
ce code sert à creer une calculatrice scientifiqueavec une belle et simple interface . vous pouvez basculer entre le mode standard et le mode scientifique en cliquant sur un simple bouton radio. cette calculatrice compris les differentes convertions entre les bases decimale,binaire,octale et hexadecimale. elle prend en charge la gestion des erreur de saisie.
Source
- import javax.swing.*;
- import java.awt.*;
- import java.awt.event.*;
- class Calculatrice extends JFrame implements ActionListener,ItemListener
- { //JFrame frame=new JFrame();On peut ne pas l'inserer si on fait extends JFrame
- JButton b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,b,bexp,bc,bcl,bMult,bDiv,bSom,bSoust;
- JButton bRes,bOff,bX1Y,b1X,bpm,bSqrt,bLog,bRand,bnCr,bnAr,bFact,bSin,bCos;
- JButton bTan,bPuis,bX2,b10x,bEx,bF,bE,bD,bC,bB,bA,b2ndF;
- JRadioButton Scie,Norm,Bin,Dec,Oct,Hex;
- ButtonGroup bg1,bg2;
- JPanel pTxt,p2,p3;
- JTextField txt;
- double xp=1,xs=0,aux=0;
- boolean op=false,mult=false,div=false,som=false,soust=false,init=true;
- boolean dec=true,bin=false,oct=false,hex=false,YX=false,X1Y=false;
- boolean nAr=false,nCr=false,shift=false,virg=false;
- Calculatrice()
- {
- super("Calculatrice Made By AMF");
- // Initialisation des bouton et champs de saisie
- b0=new JButton("0");b1=new JButton("1");b2=new JButton("2");
- b3=new JButton("3");b4=new JButton("4");b5=new JButton("5");
- b6=new JButton("6");b7=new JButton("7");b8=new JButton("8");
- b9=new JButton("9");b=new JButton(".");bexp=new JButton("Pi");
- bX1Y=new JButton("X^(1/Y)");bpm=new JButton("+/-");bMult=new JButton("*");
- bDiv=new JButton("/");bSom=new JButton("+");bSoust=new JButton("-");
- bRes=new JButton("=");b1X=new JButton("1/X");txt =new JTextField("0");
- bSqrt=new JButton("Rac");bLog=new JButton("Ln/Log");bRand=new JButton("Rand");
- bnCr=new JButton("nCr");bnAr=new JButton("nAr");bFact=new JButton("n!");
- bSin=new JButton("Sin");bCos=new JButton("Cos");bTan=new JButton("Tan");
- bPuis=new JButton("Y^X");bX2=new JButton("X^2");b10x=new JButton("10^x");
- bEx=new JButton("e^x");bF=new JButton("F");bE=new JButton("E");
- bD=new JButton("D");bC=new JButton("C");bB=new JButton("B");
- bA=new JButton("A");b2ndF=new JButton("2nF");bc=new JButton("C");
- bOff=new JButton("OFF");bcl=new JButton("Del");
- Scie=new JRadioButton("Sci");Norm=new JRadioButton("Std");
- Bin=new JRadioButton("Bin");Dec=new JRadioButton("Dec");
- Oct=new JRadioButton("Oct");Hex=new JRadioButton("Hex");
- bg1=new ButtonGroup();bg2=new ButtonGroup();
- bg1.add(Norm);bg1.add(Scie);bg2.add(Bin);bg2.add(Oct);bg2.add(Hex);bg2.add(Dec);
- Dec.setSelected(true);Norm.setSelected(true);
- bA.setEnabled(false);bB.setEnabled(false);bC.setEnabled(false);
- bD.setEnabled(false);bE.setEnabled(false);bF.setEnabled(false);
- // Definir la taille préférer des composants
- b0.setPreferredSize(new Dimension(80,30));b1.setPreferredSize(new Dimension(80,30));
- b2.setPreferredSize(new Dimension(80,30));b3.setPreferredSize(new Dimension(80,30));
- b4.setPreferredSize(new Dimension(80,30));b5.setPreferredSize(new Dimension(80,30));
- b6.setPreferredSize(new Dimension(80,30));b7.setPreferredSize(new Dimension(80,30));
- b8.setPreferredSize(new Dimension(80,30));b9.setPreferredSize(new Dimension(80,30));
- b.setPreferredSize(new Dimension(80,30));bexp.setPreferredSize(new Dimension(80,30));
- bDiv.setPreferredSize(new Dimension(80,30));bSom.setPreferredSize(new Dimension(80,30));
- bSoust.setPreferredSize(new Dimension(80,30));bRes.setPreferredSize(new Dimension(165,30));
- bX1Y.setPreferredSize(new Dimension(80,30));b1X.setPreferredSize(new Dimension(80,30));
- bpm.setPreferredSize(new Dimension(80,30));bMult.setPreferredSize(new Dimension(80,30));
- bSqrt.setPreferredSize(new Dimension(80,30));bLog.setPreferredSize(new Dimension(80,30));
- bRand.setPreferredSize(new Dimension(80,30));bnCr.setPreferredSize(new Dimension(80,30));
- bnAr.setPreferredSize(new Dimension(80,30));bFact.setPreferredSize(new Dimension(80,30));
- bCos.setPreferredSize(new Dimension(80,30));bPuis.setPreferredSize(new Dimension(80,30));
- bX2.setPreferredSize(new Dimension(80,30));b10x.setPreferredSize(new Dimension(80,30));
- bEx.setPreferredSize(new Dimension(80,30));bF.setPreferredSize(new Dimension(80,30));
- bE.setPreferredSize(new Dimension(80,30));bD.setPreferredSize(new Dimension(80,30));
- bC.setPreferredSize(new Dimension(80,30));bB.setPreferredSize(new Dimension(80,30));
- bA.setPreferredSize(new Dimension(80,30));b2ndF.setPreferredSize(new Dimension(80,30));
- Scie.setPreferredSize(new Dimension(80,30));Norm.setPreferredSize(new Dimension(80,30));
- Bin.setPreferredSize(new Dimension(80,30));Dec.setPreferredSize(new Dimension(80,30));
- Oct.setPreferredSize(new Dimension(80,30));Hex.setPreferredSize(new Dimension(80,30));
- bSin.setPreferredSize(new Dimension(80,30));bc.setPreferredSize(new Dimension(80,30));
- bOff.setPreferredSize(new Dimension(80,30));bcl.setPreferredSize(new Dimension(80,30));
- bTan.setPreferredSize(new Dimension(80,30));txt.setPreferredSize(new Dimension(440,35));
- txt.setHorizontalAlignment(SwingConstants.RIGHT);
- txt.setBackground(Color.black);txt.setForeground(Color.GREEN);
- txt.setFont(new Font("DIALOG",Font.CENTER_BASELINE+Font.BOLD,12));
- // Declaration des Panel et leurs contenues
- JPanel pNorm=new JPanel();
- pNorm.add(b7);pNorm.add(b8);pNorm.add(b9);pNorm.add(bexp);pNorm.add(bSqrt);
- pNorm.add(b4);pNorm.add(b5);pNorm.add(b6);pNorm.add(bMult);pNorm.add(bDiv);
- pNorm.add(b1);pNorm.add(b2);pNorm.add(b3);pNorm.add(bSom);pNorm.add(bSoust);
- pNorm.add(b0);pNorm.add(b);pNorm.add(bpm);pNorm.add(bRes);
- p2=new JPanel(new GridLayout(1,1));p2.add(pNorm);
- JPanel pStd=new JPanel();pStd.add(Scie);pStd.add(Norm);pStd.add(bcl);
- pStd.add(bc);pStd.add(bOff);
- JPanel pSci=new JPanel();
- pSci.add(Bin);pSci.add(Oct);pSci.add(Hex);pSci.add(Dec);pSci.add(b2ndF);
- pSci.add(bA);pSci.add(bB);pSci.add(bC);pSci.add(bD);pSci.add(bE);
- pSci.add(bPuis);pSci.add(bX2);pSci.add(b10x);pSci.add(bEx);pSci.add(bF);
- pSci.add(bFact);pSci.add(bLog);pSci.add(bSin);pSci.add(bCos);pSci.add(bTan);
- pSci.add(bX1Y);pSci.add(b1X);pSci.add(bRand);pSci.add(bnCr);pSci.add(bnAr);
- p3 =new JPanel(new GridLayout(1,1)); p3.add(pSci);
- pTxt=new JPanel();pTxt.add(txt);pTxt.add(pStd);
- // Ajout des écouteurs aux deffirents boutons
- b0.addActionListener(this);b1.addActionListener(this);b2.addActionListener(this);
- b3.addActionListener(this);b4.addActionListener(this);b5.addActionListener(this);
- b6.addActionListener(this);b7.addActionListener(this);b8.addActionListener(this);
- b9.addActionListener(this);b.addActionListener(this);bexp.addActionListener(this);
- b1X.addActionListener(this);bpm.addActionListener(this);bMult.addActionListener(this);
- bDiv.addActionListener(this);bSom.addActionListener(this);bSoust.addActionListener(this);
- bRes.addActionListener(this);bX1Y.addActionListener(this);bc.addActionListener(this);
- bcl.addActionListener(this);bOff.addActionListener(this);bSqrt.addActionListener(this);
- bLog.addActionListener(this);bRand.addActionListener(this);bnCr.addActionListener(this);
- bnAr.addActionListener(this);bFact.addActionListener(this);bSin.addActionListener(this);
- bCos.addActionListener(this);bTan.addActionListener(this);bPuis.addActionListener(this);
- bX2.addActionListener(this);b10x.addActionListener(this);bEx.addActionListener(this);
- b2ndF.addActionListener(this);bA.addActionListener(this);bB.addActionListener(this);
- bC.addActionListener(this);bD.addActionListener(this);bE.addActionListener(this);
- bF.addActionListener(this);
- Scie.addItemListener(this);Norm.addItemListener(this);Bin.addItemListener(this);
- Dec.addItemListener(this);Oct.addItemListener(this);Hex.addItemListener(this);
- // Mise en forme de la fenetre
- // ImageIcon image=new ImageIcon("Clock.png");
- // this.setIconImage(image.getImage());
- this.setSize(new Dimension(452,331));
- this.getContentPane().setLayout(new GridLayout(2,1));
- this.getContentPane().add(pTxt);this.getContentPane().add(p2);
- this.setLocation(300,100);
- this.setCursor(12);this.setResizable(true);this.show();
- this.setDefaultCloseOperation(EXIT_ON_CLOSE);
- }
- void activatehex(boolean b)
- {
- bA.setEnabled(b);bB.setEnabled(b);bC.setEnabled(b);
- bD.setEnabled(b);bE.setEnabled(b);bF.setEnabled(b);
- }
- void activateP2P3(boolean v)
- {
- b0.setEnabled(v);b1.setEnabled(v);b2.setEnabled(v);b3.setEnabled(v);
- b4.setEnabled(v);b5.setEnabled(v);b6.setEnabled(v);b7.setEnabled(v);
- b8.setEnabled(v);b9.setEnabled(v);b.setEnabled(v);bexp.setEnabled(v);
- bMult.setEnabled(v);bDiv.setEnabled(v);bSom.setEnabled(v);bSoust.setEnabled(v);
- bRes.setEnabled(v);bX1Y.setEnabled(v);b1X.setEnabled(v);bpm.setEnabled(v);
- bSqrt.setEnabled(v);bLog.setEnabled(v);bRand.setEnabled(v);bnCr.setEnabled(v);
- bnAr.setEnabled(v);bFact.setEnabled(v);bSin.setEnabled(v);bCos.setEnabled(v);
- bTan.setEnabled(v);bPuis.setEnabled(v);bX2.setEnabled(v);b10x.setEnabled(v);
- bEx.setEnabled(v);b2ndF.setEnabled(v);Scie.setEnabled(v);
- Norm.setEnabled(v);Bin.setEnabled(v);Dec.setEnabled(v);Oct.setEnabled(v);
- Hex.setEnabled(v);bA.setEnabled(v);bB.setEnabled(v);bC.setEnabled(v);
- bD.setEnabled(v);bE.setEnabled(v);bF.setEnabled(v);
- }
- void activateOp(boolean v)
- {
- b.setEnabled(v);bexp.setEnabled(v);bMult.setEnabled(v);bDiv.setEnabled(v);
- bSom.setEnabled(v);bSoust.setEnabled(v);bRes.setEnabled(v);bX1Y.setEnabled(v);
- b1X.setEnabled(v);bpm.setEnabled(v);bSqrt.setEnabled(v);bLog.setEnabled(v);
- bRand.setEnabled(v);bnCr.setEnabled(v);bnAr.setEnabled(v);bFact.setEnabled(v);
- bSin.setEnabled(v);bCos.setEnabled(v);bTan.setEnabled(v);bPuis.setEnabled(v);
- bX2.setEnabled(v);b10x.setEnabled(v);bEx.setEnabled(v);b2ndF.setEnabled(v);
- }
- int detBaseSource()
- {
- if(dec) return 10;
- else if(bin) return 2;
- else if(oct) return 8;
- else return 16;
- }
- int detBaseDestination(Object src)
- {
- if(src==Dec)
- {
- dec=true;bin=false;oct=false;hex=false;
- activatehex(false);activateOp(true);
- b0.setEnabled(true);b1.setEnabled(true);b2.setEnabled(true);
- b3.setEnabled(true);b4.setEnabled(true);b5.setEnabled(true);
- b6.setEnabled(true);b7.setEnabled(true);b8.setEnabled(true);
- b9.setEnabled(true);
- return 10;
- }
- else if(src==Bin)
- {
- dec=false;bin=true;oct=false;hex=false;
- activatehex(false);activateOp(false);
- b0.setEnabled(true);b1.setEnabled(true);b2.setEnabled(false);
- b3.setEnabled(false);b4.setEnabled(false);b5.setEnabled(false);
- b6.setEnabled(false);b7.setEnabled(false);b8.setEnabled(false);
- b9.setEnabled(false);
- return 2;
- }
- else if(src==Oct)
- {
- dec=false;bin=false;oct=true;hex=false;
- activatehex(false);activateOp(false);
- b0.setEnabled(true);b1.setEnabled(true);b2.setEnabled(true);
- b3.setEnabled(true);b4.setEnabled(true);b5.setEnabled(true);
- b6.setEnabled(true);b7.setEnabled(true);b8.setEnabled(false);
- b9.setEnabled(false);
- return 8;
- }
- else
- {
- dec=false;bin=false;oct=false;hex=true;
- activatehex(true);activateOp(false);
- b0.setEnabled(true);b1.setEnabled(true);b2.setEnabled(true);
- b3.setEnabled(true);b4.setEnabled(true);b5.setEnabled(true);
- b6.setEnabled(true);b7.setEnabled(true);b8.setEnabled(true);
- b9.setEnabled(true);
- return 16;
- }
- }
- int conversionCarct(char c)
- {
- if(c=='F') return 15;
- else if(c=='E') return 14;
- else if(c=='D') return 13;
- else if(c=='C') return 12;
- else if(c=='B') return 11;
- else if(c=='A') return 10;
- else return(Character.getNumericValue(c));
- }
- char toHexaCarct(int x)
- {
- if(x==10) return 'A';
- else if(x==11) return 'B';
- else if(x==12) return 'C';
- else if(x==13) return 'D';
- else if(x==14) return 'E';
- else return 'F';
- }
- boolean isValide(String s)
- {
- for(int i=0;i<s.length();i++)
- {
- if(s.charAt(i)=='.' || s.charAt(i)=='-')
- return false;
- }
- return true;
- }
- int toDec(String dep,int bs)
- {
- int i=(dep.length())-1;
- String s=dep;
- int puis=0;
- int res=0;
- while(i>=0)
- {
- res=res+conversionCarct(s.charAt(i))*((int)(Math.pow(bs,puis)));
- puis++;
- i--;
- }
- return res;
- }
- String fromDec(String dep,int bd)
- {
- String s="";
- int aux=Integer.parseInt(dep);
- while(aux/bd!=0)
- {
- if(aux%bd<10)
- {s=(aux%bd)+s;}
- else
- {s=toHexaCarct(aux%bd)+s;}
- aux=aux/bd;
- }
- if(aux%bd<10) {s=(aux%bd)+s;}
- else {s=toHexaCarct(aux%bd)+s;}
- return s;
- }
- void Resultat()
- {
- double x2=Double.parseDouble(txt.getText());
- if(mult) {txt.setText(""+(xp*x2));xp=Double.parseDouble(txt.getText());}
- else if(div)
- {
- if(x2!=0)
- {
- txt.setText(""+(xp/x2));
- xp=Double.parseDouble(txt.getText());
- }
- else
- {
- activateP2P3(false);
- txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
- txt.setText(" ERROR !! DIVISION PAR ZERO IMPOSSIBLE ");
- }
- }
- else if(som) {txt.setText(""+(xs+x2));xs=Double.parseDouble(txt.getText());}
- else if(soust){ txt.setText(""+(xs-x2));xs=Double.parseDouble(txt.getText());}
- else if(YX) {double res=Math.pow(aux,x2);txt.setText(""+res);}
- else if(nAr)
- {
- if((aux>=x2)&&(aux>=0)&&(x2>=0))
- {
- double res=(fact(aux)/fact((aux-x2)));
- txt.setText(""+res);
- }
- else
- {
- txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
- txt.setText(" ERROR!! RULE : \" n doit etre >= r et n >= 0 et r >= 0 \" ");
- activateP2P3(false);}
- }
- else if(nCr)
- {
- if((aux>=x2)&&(aux>=0)&&(x2>=0))
- {
- double res=(fact(aux)/(fact(x2)*fact((aux-x2))));
- txt.setText(""+res);
- }
- else
- {
- txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
- txt.setText(" ERROR!! RULE : \" n doit etre >= r et n >= 0 et r >= 0 \" ");
- activateP2P3(false);}
- }
- else if(X1Y)
- {
- if(x2!=0)
- {double res=Math.pow(aux,(1/x2));txt.setText(""+res);}
- else
- {
- txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
- txt.setText(" ERROR!! DEUXIEME NOMBRE DOIT ETRE DIFFERENT DE 0 ");
- activateP2P3(false);}
- }
- init=false;
- virg=false;
- }
- double fact(double x)
- {
- double res=1;
- if(x>=0)
- {
- for(int i=2;i<=x;i++)
- {
- res=res*i;
- }
- return res;
- }
- else return 0;
- }
- public void actionPerformed(ActionEvent e)
- {
- Object src = e.getSource();
- JButton baux=(JButton)src;
- ////////////*********Bouton des chiffres********//////////////
- if((src==b0)||src==b1||src==b2||src==b3||src==b4||src==b5||src==b6||src==b7||src==b8||src==b9||src==bA||src==bB||src==bC||src==bD||src==bE||src==bF)
- {
- if(!op) txt.setText(txt.getText()+baux.getLabel());
- else if(op)
- {
- txt.setText(baux.getLabel());
- op=false;
- }
- }
- ////////////*********Bouton virgule********//////////////
- else if(src==b)
- {
- if(!virg)
- {
- txt.setText(txt.getText()+".");
- virg=true;
- }
- }
- ////////////*********Bouton Pi********//////////////
- else if(src==bexp)
- {
- txt.setText(""+Math.PI);
- virg=true;
- }
- ////////////*********Bouton clear********//////////////
- else if(src==bc)
- {txt.setText("0");xp=1;xs=0;init=true;aux=0;shift=false;op=false;X1Y=true;
- mult=false;div=false;som=false;soust=false;nAr=false;nCr=false;
- activateP2P3(true);activatehex(false);Dec.setSelected(true);virg=false;
- txt.setBackground(Color.black);txt.setForeground(Color.GREEN);}
- ////////////*********Bouton de +/-********//////////////
- else if(src==bpm)
- txt.setText(""+Double.parseDouble(txt.getText())*-1);
- else if(src==bcl)
- txt.setText(txt.getText().substring(0,txt.getText().length()-1));
-
- ////////////*********Multiplication********//////////////
- else if(src==bMult)
- {
- try
- {
- if(init || op)
- {
- xp=(Double.parseDouble(txt.getText()));
- init=false;virg=false;
- txt.setText(""+xp);
- }
- else
- {
- Resultat();
- xp=(Double.parseDouble(txt.getText()));
- }
- op=true;mult=true;div=false;som=false;soust=false;YX=false;
- nAr=false;nCr=false;X1Y=true;
- }catch(NumberFormatException execp)
- {
- txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
- txt.setText("ERROR : CONVERTION AVEC VERGULE FLOTTANTE NON SUPPORTEE ");
- activateP2P3(false);}
- }
- ////////////*******Division******////////////
- else if(src==bDiv)
- {
- try
- {
- if(init || op)
- {
- xp=(Double.parseDouble(txt.getText()));
- init=false;virg=false;
- txt.setText(""+xp);
- }
- else
- {
- Resultat();
- xp=(Double.parseDouble(txt.getText()));
- }
- op=true;mult=false;div=true;som=false;soust=false;YX=false;
- nAr=false;nCr=false;X1Y=true;
- }catch(NumberFormatException execp)
- {
- txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
- txt.setText("ERROR : CONVERTION AVEC VERGULE FLOTTANTE NON SUPPORTEE ");
- activateP2P3(false);}
- }
- ////////////////***********Somme**********////////////////
- else if(src==bSom)
- {
- try
- {
- if(init || op)
- {
- xs=(Double.parseDouble(txt.getText()));
- init=false;virg=false;
- txt.setText(""+xs);
- }
- else
- {
- Resultat();
- xs=(Double.parseDouble(txt.getText()));
- }
- op=true;mult=false;div=false;som=true;soust=false;YX=false;
- nAr=false;nCr=false;X1Y=true;
- }catch(NumberFormatException execp)
- {
- txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
- txt.setText("ERROR : CONVERTION AVEC VERGULE FLOTTANTE NON SUPPORTEE ");
- activateP2P3(false);}
- }
- ////////////////************Soustraction***********//////////////////
- else if(src==bSoust)
- {
- try
- {
- if(init || op)
- {
- xs=(Double.parseDouble(txt.getText()));
- init=false;virg=false;
- txt.setText(""+xs);
- }
- else
- {
- Resultat();
- xs=(Double.parseDouble(txt.getText()));
- }
- op=true;mult=false;div=false;som=false;soust=true;YX=false;
- nAr=false;nCr=false;X1Y=true;
- }catch(NumberFormatException execp)
- {
- txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
- txt.setText("ERROR : CONVERTION AVEC VERGULE FLOTTANTE NON SUPPORTEE ");
- activateP2P3(false);}
- }
- //////////////////**************Resultat*************//////////////////
- else if(e.getSource()==bRes)
- {
- Resultat();
- init=true;virg=false;
- }
- //////////************Les fonction Scientifiques********/////////////
- else if(src==b2ndF)
- {shift=true;}
- else if(src==bPuis)
- {
- aux=Double.parseDouble(txt.getText());
- YX=true;init=false;nAr=false;nCr=false;X1Y=true;
- op=true;mult=false;div=false;som=false;soust=false;
- }
- else if(src==b10x)
- {
- double x=Double.parseDouble(txt.getText());
- double res=Math.pow(10,x);
- txt.setText(""+res);
- }
- else if(src==bX2)
- {
- double x=Double.parseDouble(txt.getText());
- double res=Math.pow(x,2);
- txt.setText(""+res);
- }
- else if(src==bX1Y)
- {
- aux=Double.parseDouble(txt.getText());
- YX=false;init=false;nAr=false;nCr=false;X1Y=true;
- op=true;mult=false;div=false;som=false;soust=false;
- }
- else if(src==b1X)
- {
- double x=Double.parseDouble(txt.getText());
- if(x!=0)
- {txt.setText(""+(1/x));}
- else {txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
- txt.setText(" ERROR!! DIVISION PAR ZERO IMPOSSIBLE ");
- activateP2P3(false);}
- }
- else if(src==bLog)
- {
- double x=Double.parseDouble(txt.getText());
- if(!shift && x>0)
- {
- double res=Math.log(x);
- txt.setText(""+res);
- }
- else if(shift && x>0)
- {
- double res=Math.log10(x);
- txt.setText(""+res);
- shift=false;
- }
- else if(x<=0)
- {
- txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
- txt.setText(" ERROR!! RULE : \" X DOIT ETRE > A ZERO \" ");
- activateP2P3(false);}
- }
- else if(src==bEx)
- {
- double x=Double.parseDouble(txt.getText());
- double res=Math.exp(x);
- txt.setText(""+res);
- }
- else if(src==bFact)
- {
-
-
- if(isValide(txt.getText()))
- {double res=fact(Double.parseDouble(txt.getText()));
- txt.setText(""+res);}
- else
- {
- txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
- txt.setText(" ERROR!! RULE : \" N DOIT ETRE UN ENTIER > A ZERO \" ");
- activateP2P3(false);}
- }
- else if(src==bSin)
- {
- if(!shift)
- {
- double x=Math.toRadians(Double.parseDouble(txt.getText()));
- double res=Math.sin(x);
- txt.setText(""+res);
- }
- else
- {
- double x=Double.parseDouble(txt.getText());
- double res=Math.asin(x);
- txt.setText(""+Math.toDegrees(res));
- shift=false;
- }
- }
- else if(src==bCos)
- {
- if(!shift)
- {
- double x=Math.toRadians(Double.parseDouble(txt.getText()));
- double res=Math.cos(x);
- txt.setText(""+res);
- }
- else
- {
- double x=Double.parseDouble(txt.getText());
- double res=Math.acos(x);
- txt.setText(""+Math.toDegrees(res));
- shift=false;
- }
- }
- else if(src==bTan)
- {
- if(!shift)
- {
- double x=Math.toRadians(Double.parseDouble(txt.getText()));
- double res=Math.tan(x);
- txt.setText(""+res);
- }
- else
- {
- double x=Double.parseDouble(txt.getText());
- double res=Math.atan(x);
- txt.setText(""+Math.toDegrees(res));
- shift=false;
- }
- }
- else if(src==bSqrt)
- {
- double x=Double.parseDouble(txt.getText());
- if(x>=0)
- {double res=Math.sqrt(x);
- txt.setText(""+res);}
- else {
- txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
- txt.setText(" ERROR!! RULE : \" X DOIT ETRE > A ZERO \" ");
- activateP2P3(false);}
- }
- else if(src==bRand)
- {
- double x=Double.parseDouble(txt.getText());
- double res=Math.random();
- txt.setText(""+res);
- }
- else if(src==bnAr)
- {
- aux=Double.parseDouble(txt.getText());
- nAr=true;YX=false;init=false;
- op=true;mult=false;div=false;som=false;soust=false;
- }
- else if(src==bnCr)
- {
- aux=Double.parseDouble(txt.getText());
- nCr=true;YX=false;init=false;
- op=true;mult=false;div=false;som=false;soust=false;
- }
- /////////************FIN des Fonctions Scientifiques********/////////
-
- else if(src==bOff) System.exit(0);
- }
- public void itemStateChanged(ItemEvent i)
- {
- Object srci=i.getSource();
- if(srci==Scie)
- {
- this.resize(452,564);
- this.getContentPane().setLayout(new GridLayout(3,1));
- this.getContentPane().add(pTxt);this.getContentPane().add(p3);
- this.getContentPane().add(p2); this.setLocation(300,100);
-
- }
- else if(srci==Norm)
- {
- //Calculatrice c=new Calculatrice();
- this.getContentPane().removeAll();
- this.getContentPane().setLayout(new GridLayout(2,1));
- this.resize(452,331);
- this.getContentPane().add(pTxt);this.getContentPane().add(p2);
- this.setLocation(300,100);
- // c.show();
- // this.dispose();
- }
- else if(dec)
- {
- activateOp(false);
- String dep=txt.getText();
- try
- {
- String s=fromDec(dep,detBaseDestination(srci));
- txt.setText(s);}
- catch(NumberFormatException e)
- {
- txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
- txt.setText("ERROR : CONVERTION AVEC VERGULE FLOTTANTE NON SUPPORTEE ");
- activateP2P3(false);}
- }
- else if(bin||oct||hex)
- {
- try
- {
- int x= toDec(txt.getText(),detBaseSource());
- String s=""+x;
- txt.setText(fromDec(s,detBaseDestination(srci)));}
- catch(NumberFormatException e)
- {
- txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
- txt.setText("ERROR : CONVERTION AVEC VERGULE FLOTTANTE NON SUPPORTEE ");
- activateP2P3(false);}
- }
- }
- public static void main (String[] args)
- {
- Calculatrice c=new Calculatrice();
- }
- }
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
class Calculatrice extends JFrame implements ActionListener,ItemListener
{ //JFrame frame=new JFrame();On peut ne pas l'inserer si on fait extends JFrame
JButton b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,b,bexp,bc,bcl,bMult,bDiv,bSom,bSoust;
JButton bRes,bOff,bX1Y,b1X,bpm,bSqrt,bLog,bRand,bnCr,bnAr,bFact,bSin,bCos;
JButton bTan,bPuis,bX2,b10x,bEx,bF,bE,bD,bC,bB,bA,b2ndF;
JRadioButton Scie,Norm,Bin,Dec,Oct,Hex;
ButtonGroup bg1,bg2;
JPanel pTxt,p2,p3;
JTextField txt;
double xp=1,xs=0,aux=0;
boolean op=false,mult=false,div=false,som=false,soust=false,init=true;
boolean dec=true,bin=false,oct=false,hex=false,YX=false,X1Y=false;
boolean nAr=false,nCr=false,shift=false,virg=false;
Calculatrice()
{
super("Calculatrice Made By AMF");
// Initialisation des bouton et champs de saisie
b0=new JButton("0");b1=new JButton("1");b2=new JButton("2");
b3=new JButton("3");b4=new JButton("4");b5=new JButton("5");
b6=new JButton("6");b7=new JButton("7");b8=new JButton("8");
b9=new JButton("9");b=new JButton(".");bexp=new JButton("Pi");
bX1Y=new JButton("X^(1/Y)");bpm=new JButton("+/-");bMult=new JButton("*");
bDiv=new JButton("/");bSom=new JButton("+");bSoust=new JButton("-");
bRes=new JButton("=");b1X=new JButton("1/X");txt =new JTextField("0");
bSqrt=new JButton("Rac");bLog=new JButton("Ln/Log");bRand=new JButton("Rand");
bnCr=new JButton("nCr");bnAr=new JButton("nAr");bFact=new JButton("n!");
bSin=new JButton("Sin");bCos=new JButton("Cos");bTan=new JButton("Tan");
bPuis=new JButton("Y^X");bX2=new JButton("X^2");b10x=new JButton("10^x");
bEx=new JButton("e^x");bF=new JButton("F");bE=new JButton("E");
bD=new JButton("D");bC=new JButton("C");bB=new JButton("B");
bA=new JButton("A");b2ndF=new JButton("2nF");bc=new JButton("C");
bOff=new JButton("OFF");bcl=new JButton("Del");
Scie=new JRadioButton("Sci");Norm=new JRadioButton("Std");
Bin=new JRadioButton("Bin");Dec=new JRadioButton("Dec");
Oct=new JRadioButton("Oct");Hex=new JRadioButton("Hex");
bg1=new ButtonGroup();bg2=new ButtonGroup();
bg1.add(Norm);bg1.add(Scie);bg2.add(Bin);bg2.add(Oct);bg2.add(Hex);bg2.add(Dec);
Dec.setSelected(true);Norm.setSelected(true);
bA.setEnabled(false);bB.setEnabled(false);bC.setEnabled(false);
bD.setEnabled(false);bE.setEnabled(false);bF.setEnabled(false);
// Definir la taille préférer des composants
b0.setPreferredSize(new Dimension(80,30));b1.setPreferredSize(new Dimension(80,30));
b2.setPreferredSize(new Dimension(80,30));b3.setPreferredSize(new Dimension(80,30));
b4.setPreferredSize(new Dimension(80,30));b5.setPreferredSize(new Dimension(80,30));
b6.setPreferredSize(new Dimension(80,30));b7.setPreferredSize(new Dimension(80,30));
b8.setPreferredSize(new Dimension(80,30));b9.setPreferredSize(new Dimension(80,30));
b.setPreferredSize(new Dimension(80,30));bexp.setPreferredSize(new Dimension(80,30));
bDiv.setPreferredSize(new Dimension(80,30));bSom.setPreferredSize(new Dimension(80,30));
bSoust.setPreferredSize(new Dimension(80,30));bRes.setPreferredSize(new Dimension(165,30));
bX1Y.setPreferredSize(new Dimension(80,30));b1X.setPreferredSize(new Dimension(80,30));
bpm.setPreferredSize(new Dimension(80,30));bMult.setPreferredSize(new Dimension(80,30));
bSqrt.setPreferredSize(new Dimension(80,30));bLog.setPreferredSize(new Dimension(80,30));
bRand.setPreferredSize(new Dimension(80,30));bnCr.setPreferredSize(new Dimension(80,30));
bnAr.setPreferredSize(new Dimension(80,30));bFact.setPreferredSize(new Dimension(80,30));
bCos.setPreferredSize(new Dimension(80,30));bPuis.setPreferredSize(new Dimension(80,30));
bX2.setPreferredSize(new Dimension(80,30));b10x.setPreferredSize(new Dimension(80,30));
bEx.setPreferredSize(new Dimension(80,30));bF.setPreferredSize(new Dimension(80,30));
bE.setPreferredSize(new Dimension(80,30));bD.setPreferredSize(new Dimension(80,30));
bC.setPreferredSize(new Dimension(80,30));bB.setPreferredSize(new Dimension(80,30));
bA.setPreferredSize(new Dimension(80,30));b2ndF.setPreferredSize(new Dimension(80,30));
Scie.setPreferredSize(new Dimension(80,30));Norm.setPreferredSize(new Dimension(80,30));
Bin.setPreferredSize(new Dimension(80,30));Dec.setPreferredSize(new Dimension(80,30));
Oct.setPreferredSize(new Dimension(80,30));Hex.setPreferredSize(new Dimension(80,30));
bSin.setPreferredSize(new Dimension(80,30));bc.setPreferredSize(new Dimension(80,30));
bOff.setPreferredSize(new Dimension(80,30));bcl.setPreferredSize(new Dimension(80,30));
bTan.setPreferredSize(new Dimension(80,30));txt.setPreferredSize(new Dimension(440,35));
txt.setHorizontalAlignment(SwingConstants.RIGHT);
txt.setBackground(Color.black);txt.setForeground(Color.GREEN);
txt.setFont(new Font("DIALOG",Font.CENTER_BASELINE+Font.BOLD,12));
// Declaration des Panel et leurs contenues
JPanel pNorm=new JPanel();
pNorm.add(b7);pNorm.add(b8);pNorm.add(b9);pNorm.add(bexp);pNorm.add(bSqrt);
pNorm.add(b4);pNorm.add(b5);pNorm.add(b6);pNorm.add(bMult);pNorm.add(bDiv);
pNorm.add(b1);pNorm.add(b2);pNorm.add(b3);pNorm.add(bSom);pNorm.add(bSoust);
pNorm.add(b0);pNorm.add(b);pNorm.add(bpm);pNorm.add(bRes);
p2=new JPanel(new GridLayout(1,1));p2.add(pNorm);
JPanel pStd=new JPanel();pStd.add(Scie);pStd.add(Norm);pStd.add(bcl);
pStd.add(bc);pStd.add(bOff);
JPanel pSci=new JPanel();
pSci.add(Bin);pSci.add(Oct);pSci.add(Hex);pSci.add(Dec);pSci.add(b2ndF);
pSci.add(bA);pSci.add(bB);pSci.add(bC);pSci.add(bD);pSci.add(bE);
pSci.add(bPuis);pSci.add(bX2);pSci.add(b10x);pSci.add(bEx);pSci.add(bF);
pSci.add(bFact);pSci.add(bLog);pSci.add(bSin);pSci.add(bCos);pSci.add(bTan);
pSci.add(bX1Y);pSci.add(b1X);pSci.add(bRand);pSci.add(bnCr);pSci.add(bnAr);
p3 =new JPanel(new GridLayout(1,1)); p3.add(pSci);
pTxt=new JPanel();pTxt.add(txt);pTxt.add(pStd);
// Ajout des écouteurs aux deffirents boutons
b0.addActionListener(this);b1.addActionListener(this);b2.addActionListener(this);
b3.addActionListener(this);b4.addActionListener(this);b5.addActionListener(this);
b6.addActionListener(this);b7.addActionListener(this);b8.addActionListener(this);
b9.addActionListener(this);b.addActionListener(this);bexp.addActionListener(this);
b1X.addActionListener(this);bpm.addActionListener(this);bMult.addActionListener(this);
bDiv.addActionListener(this);bSom.addActionListener(this);bSoust.addActionListener(this);
bRes.addActionListener(this);bX1Y.addActionListener(this);bc.addActionListener(this);
bcl.addActionListener(this);bOff.addActionListener(this);bSqrt.addActionListener(this);
bLog.addActionListener(this);bRand.addActionListener(this);bnCr.addActionListener(this);
bnAr.addActionListener(this);bFact.addActionListener(this);bSin.addActionListener(this);
bCos.addActionListener(this);bTan.addActionListener(this);bPuis.addActionListener(this);
bX2.addActionListener(this);b10x.addActionListener(this);bEx.addActionListener(this);
b2ndF.addActionListener(this);bA.addActionListener(this);bB.addActionListener(this);
bC.addActionListener(this);bD.addActionListener(this);bE.addActionListener(this);
bF.addActionListener(this);
Scie.addItemListener(this);Norm.addItemListener(this);Bin.addItemListener(this);
Dec.addItemListener(this);Oct.addItemListener(this);Hex.addItemListener(this);
// Mise en forme de la fenetre
// ImageIcon image=new ImageIcon("Clock.png");
// this.setIconImage(image.getImage());
this.setSize(new Dimension(452,331));
this.getContentPane().setLayout(new GridLayout(2,1));
this.getContentPane().add(pTxt);this.getContentPane().add(p2);
this.setLocation(300,100);
this.setCursor(12);this.setResizable(true);this.show();
this.setDefaultCloseOperation(EXIT_ON_CLOSE);
}
void activatehex(boolean b)
{
bA.setEnabled(b);bB.setEnabled(b);bC.setEnabled(b);
bD.setEnabled(b);bE.setEnabled(b);bF.setEnabled(b);
}
void activateP2P3(boolean v)
{
b0.setEnabled(v);b1.setEnabled(v);b2.setEnabled(v);b3.setEnabled(v);
b4.setEnabled(v);b5.setEnabled(v);b6.setEnabled(v);b7.setEnabled(v);
b8.setEnabled(v);b9.setEnabled(v);b.setEnabled(v);bexp.setEnabled(v);
bMult.setEnabled(v);bDiv.setEnabled(v);bSom.setEnabled(v);bSoust.setEnabled(v);
bRes.setEnabled(v);bX1Y.setEnabled(v);b1X.setEnabled(v);bpm.setEnabled(v);
bSqrt.setEnabled(v);bLog.setEnabled(v);bRand.setEnabled(v);bnCr.setEnabled(v);
bnAr.setEnabled(v);bFact.setEnabled(v);bSin.setEnabled(v);bCos.setEnabled(v);
bTan.setEnabled(v);bPuis.setEnabled(v);bX2.setEnabled(v);b10x.setEnabled(v);
bEx.setEnabled(v);b2ndF.setEnabled(v);Scie.setEnabled(v);
Norm.setEnabled(v);Bin.setEnabled(v);Dec.setEnabled(v);Oct.setEnabled(v);
Hex.setEnabled(v);bA.setEnabled(v);bB.setEnabled(v);bC.setEnabled(v);
bD.setEnabled(v);bE.setEnabled(v);bF.setEnabled(v);
}
void activateOp(boolean v)
{
b.setEnabled(v);bexp.setEnabled(v);bMult.setEnabled(v);bDiv.setEnabled(v);
bSom.setEnabled(v);bSoust.setEnabled(v);bRes.setEnabled(v);bX1Y.setEnabled(v);
b1X.setEnabled(v);bpm.setEnabled(v);bSqrt.setEnabled(v);bLog.setEnabled(v);
bRand.setEnabled(v);bnCr.setEnabled(v);bnAr.setEnabled(v);bFact.setEnabled(v);
bSin.setEnabled(v);bCos.setEnabled(v);bTan.setEnabled(v);bPuis.setEnabled(v);
bX2.setEnabled(v);b10x.setEnabled(v);bEx.setEnabled(v);b2ndF.setEnabled(v);
}
int detBaseSource()
{
if(dec) return 10;
else if(bin) return 2;
else if(oct) return 8;
else return 16;
}
int detBaseDestination(Object src)
{
if(src==Dec)
{
dec=true;bin=false;oct=false;hex=false;
activatehex(false);activateOp(true);
b0.setEnabled(true);b1.setEnabled(true);b2.setEnabled(true);
b3.setEnabled(true);b4.setEnabled(true);b5.setEnabled(true);
b6.setEnabled(true);b7.setEnabled(true);b8.setEnabled(true);
b9.setEnabled(true);
return 10;
}
else if(src==Bin)
{
dec=false;bin=true;oct=false;hex=false;
activatehex(false);activateOp(false);
b0.setEnabled(true);b1.setEnabled(true);b2.setEnabled(false);
b3.setEnabled(false);b4.setEnabled(false);b5.setEnabled(false);
b6.setEnabled(false);b7.setEnabled(false);b8.setEnabled(false);
b9.setEnabled(false);
return 2;
}
else if(src==Oct)
{
dec=false;bin=false;oct=true;hex=false;
activatehex(false);activateOp(false);
b0.setEnabled(true);b1.setEnabled(true);b2.setEnabled(true);
b3.setEnabled(true);b4.setEnabled(true);b5.setEnabled(true);
b6.setEnabled(true);b7.setEnabled(true);b8.setEnabled(false);
b9.setEnabled(false);
return 8;
}
else
{
dec=false;bin=false;oct=false;hex=true;
activatehex(true);activateOp(false);
b0.setEnabled(true);b1.setEnabled(true);b2.setEnabled(true);
b3.setEnabled(true);b4.setEnabled(true);b5.setEnabled(true);
b6.setEnabled(true);b7.setEnabled(true);b8.setEnabled(true);
b9.setEnabled(true);
return 16;
}
}
int conversionCarct(char c)
{
if(c=='F') return 15;
else if(c=='E') return 14;
else if(c=='D') return 13;
else if(c=='C') return 12;
else if(c=='B') return 11;
else if(c=='A') return 10;
else return(Character.getNumericValue(c));
}
char toHexaCarct(int x)
{
if(x==10) return 'A';
else if(x==11) return 'B';
else if(x==12) return 'C';
else if(x==13) return 'D';
else if(x==14) return 'E';
else return 'F';
}
boolean isValide(String s)
{
for(int i=0;i<s.length();i++)
{
if(s.charAt(i)=='.' || s.charAt(i)=='-')
return false;
}
return true;
}
int toDec(String dep,int bs)
{
int i=(dep.length())-1;
String s=dep;
int puis=0;
int res=0;
while(i>=0)
{
res=res+conversionCarct(s.charAt(i))*((int)(Math.pow(bs,puis)));
puis++;
i--;
}
return res;
}
String fromDec(String dep,int bd)
{
String s="";
int aux=Integer.parseInt(dep);
while(aux/bd!=0)
{
if(aux%bd<10)
{s=(aux%bd)+s;}
else
{s=toHexaCarct(aux%bd)+s;}
aux=aux/bd;
}
if(aux%bd<10) {s=(aux%bd)+s;}
else {s=toHexaCarct(aux%bd)+s;}
return s;
}
void Resultat()
{
double x2=Double.parseDouble(txt.getText());
if(mult) {txt.setText(""+(xp*x2));xp=Double.parseDouble(txt.getText());}
else if(div)
{
if(x2!=0)
{
txt.setText(""+(xp/x2));
xp=Double.parseDouble(txt.getText());
}
else
{
activateP2P3(false);
txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
txt.setText(" ERROR !! DIVISION PAR ZERO IMPOSSIBLE ");
}
}
else if(som) {txt.setText(""+(xs+x2));xs=Double.parseDouble(txt.getText());}
else if(soust){ txt.setText(""+(xs-x2));xs=Double.parseDouble(txt.getText());}
else if(YX) {double res=Math.pow(aux,x2);txt.setText(""+res);}
else if(nAr)
{
if((aux>=x2)&&(aux>=0)&&(x2>=0))
{
double res=(fact(aux)/fact((aux-x2)));
txt.setText(""+res);
}
else
{
txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
txt.setText(" ERROR!! RULE : \" n doit etre >= r et n >= 0 et r >= 0 \" ");
activateP2P3(false);}
}
else if(nCr)
{
if((aux>=x2)&&(aux>=0)&&(x2>=0))
{
double res=(fact(aux)/(fact(x2)*fact((aux-x2))));
txt.setText(""+res);
}
else
{
txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
txt.setText(" ERROR!! RULE : \" n doit etre >= r et n >= 0 et r >= 0 \" ");
activateP2P3(false);}
}
else if(X1Y)
{
if(x2!=0)
{double res=Math.pow(aux,(1/x2));txt.setText(""+res);}
else
{
txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
txt.setText(" ERROR!! DEUXIEME NOMBRE DOIT ETRE DIFFERENT DE 0 ");
activateP2P3(false);}
}
init=false;
virg=false;
}
double fact(double x)
{
double res=1;
if(x>=0)
{
for(int i=2;i<=x;i++)
{
res=res*i;
}
return res;
}
else return 0;
}
public void actionPerformed(ActionEvent e)
{
Object src = e.getSource();
JButton baux=(JButton)src;
////////////*********Bouton des chiffres********//////////////
if((src==b0)||src==b1||src==b2||src==b3||src==b4||src==b5||src==b6||src==b7||src==b8||src==b9||src==bA||src==bB||src==bC||src==bD||src==bE||src==bF)
{
if(!op) txt.setText(txt.getText()+baux.getLabel());
else if(op)
{
txt.setText(baux.getLabel());
op=false;
}
}
////////////*********Bouton virgule********//////////////
else if(src==b)
{
if(!virg)
{
txt.setText(txt.getText()+".");
virg=true;
}
}
////////////*********Bouton Pi********//////////////
else if(src==bexp)
{
txt.setText(""+Math.PI);
virg=true;
}
////////////*********Bouton clear********//////////////
else if(src==bc)
{txt.setText("0");xp=1;xs=0;init=true;aux=0;shift=false;op=false;X1Y=true;
mult=false;div=false;som=false;soust=false;nAr=false;nCr=false;
activateP2P3(true);activatehex(false);Dec.setSelected(true);virg=false;
txt.setBackground(Color.black);txt.setForeground(Color.GREEN);}
////////////*********Bouton de +/-********//////////////
else if(src==bpm)
txt.setText(""+Double.parseDouble(txt.getText())*-1);
else if(src==bcl)
txt.setText(txt.getText().substring(0,txt.getText().length()-1));
////////////*********Multiplication********//////////////
else if(src==bMult)
{
try
{
if(init || op)
{
xp=(Double.parseDouble(txt.getText()));
init=false;virg=false;
txt.setText(""+xp);
}
else
{
Resultat();
xp=(Double.parseDouble(txt.getText()));
}
op=true;mult=true;div=false;som=false;soust=false;YX=false;
nAr=false;nCr=false;X1Y=true;
}catch(NumberFormatException execp)
{
txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
txt.setText("ERROR : CONVERTION AVEC VERGULE FLOTTANTE NON SUPPORTEE ");
activateP2P3(false);}
}
////////////*******Division******////////////
else if(src==bDiv)
{
try
{
if(init || op)
{
xp=(Double.parseDouble(txt.getText()));
init=false;virg=false;
txt.setText(""+xp);
}
else
{
Resultat();
xp=(Double.parseDouble(txt.getText()));
}
op=true;mult=false;div=true;som=false;soust=false;YX=false;
nAr=false;nCr=false;X1Y=true;
}catch(NumberFormatException execp)
{
txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
txt.setText("ERROR : CONVERTION AVEC VERGULE FLOTTANTE NON SUPPORTEE ");
activateP2P3(false);}
}
////////////////***********Somme**********////////////////
else if(src==bSom)
{
try
{
if(init || op)
{
xs=(Double.parseDouble(txt.getText()));
init=false;virg=false;
txt.setText(""+xs);
}
else
{
Resultat();
xs=(Double.parseDouble(txt.getText()));
}
op=true;mult=false;div=false;som=true;soust=false;YX=false;
nAr=false;nCr=false;X1Y=true;
}catch(NumberFormatException execp)
{
txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
txt.setText("ERROR : CONVERTION AVEC VERGULE FLOTTANTE NON SUPPORTEE ");
activateP2P3(false);}
}
////////////////************Soustraction***********//////////////////
else if(src==bSoust)
{
try
{
if(init || op)
{
xs=(Double.parseDouble(txt.getText()));
init=false;virg=false;
txt.setText(""+xs);
}
else
{
Resultat();
xs=(Double.parseDouble(txt.getText()));
}
op=true;mult=false;div=false;som=false;soust=true;YX=false;
nAr=false;nCr=false;X1Y=true;
}catch(NumberFormatException execp)
{
txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
txt.setText("ERROR : CONVERTION AVEC VERGULE FLOTTANTE NON SUPPORTEE ");
activateP2P3(false);}
}
//////////////////**************Resultat*************//////////////////
else if(e.getSource()==bRes)
{
Resultat();
init=true;virg=false;
}
//////////************Les fonction Scientifiques********/////////////
else if(src==b2ndF)
{shift=true;}
else if(src==bPuis)
{
aux=Double.parseDouble(txt.getText());
YX=true;init=false;nAr=false;nCr=false;X1Y=true;
op=true;mult=false;div=false;som=false;soust=false;
}
else if(src==b10x)
{
double x=Double.parseDouble(txt.getText());
double res=Math.pow(10,x);
txt.setText(""+res);
}
else if(src==bX2)
{
double x=Double.parseDouble(txt.getText());
double res=Math.pow(x,2);
txt.setText(""+res);
}
else if(src==bX1Y)
{
aux=Double.parseDouble(txt.getText());
YX=false;init=false;nAr=false;nCr=false;X1Y=true;
op=true;mult=false;div=false;som=false;soust=false;
}
else if(src==b1X)
{
double x=Double.parseDouble(txt.getText());
if(x!=0)
{txt.setText(""+(1/x));}
else {txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
txt.setText(" ERROR!! DIVISION PAR ZERO IMPOSSIBLE ");
activateP2P3(false);}
}
else if(src==bLog)
{
double x=Double.parseDouble(txt.getText());
if(!shift && x>0)
{
double res=Math.log(x);
txt.setText(""+res);
}
else if(shift && x>0)
{
double res=Math.log10(x);
txt.setText(""+res);
shift=false;
}
else if(x<=0)
{
txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
txt.setText(" ERROR!! RULE : \" X DOIT ETRE > A ZERO \" ");
activateP2P3(false);}
}
else if(src==bEx)
{
double x=Double.parseDouble(txt.getText());
double res=Math.exp(x);
txt.setText(""+res);
}
else if(src==bFact)
{
if(isValide(txt.getText()))
{double res=fact(Double.parseDouble(txt.getText()));
txt.setText(""+res);}
else
{
txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
txt.setText(" ERROR!! RULE : \" N DOIT ETRE UN ENTIER > A ZERO \" ");
activateP2P3(false);}
}
else if(src==bSin)
{
if(!shift)
{
double x=Math.toRadians(Double.parseDouble(txt.getText()));
double res=Math.sin(x);
txt.setText(""+res);
}
else
{
double x=Double.parseDouble(txt.getText());
double res=Math.asin(x);
txt.setText(""+Math.toDegrees(res));
shift=false;
}
}
else if(src==bCos)
{
if(!shift)
{
double x=Math.toRadians(Double.parseDouble(txt.getText()));
double res=Math.cos(x);
txt.setText(""+res);
}
else
{
double x=Double.parseDouble(txt.getText());
double res=Math.acos(x);
txt.setText(""+Math.toDegrees(res));
shift=false;
}
}
else if(src==bTan)
{
if(!shift)
{
double x=Math.toRadians(Double.parseDouble(txt.getText()));
double res=Math.tan(x);
txt.setText(""+res);
}
else
{
double x=Double.parseDouble(txt.getText());
double res=Math.atan(x);
txt.setText(""+Math.toDegrees(res));
shift=false;
}
}
else if(src==bSqrt)
{
double x=Double.parseDouble(txt.getText());
if(x>=0)
{double res=Math.sqrt(x);
txt.setText(""+res);}
else {
txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
txt.setText(" ERROR!! RULE : \" X DOIT ETRE > A ZERO \" ");
activateP2P3(false);}
}
else if(src==bRand)
{
double x=Double.parseDouble(txt.getText());
double res=Math.random();
txt.setText(""+res);
}
else if(src==bnAr)
{
aux=Double.parseDouble(txt.getText());
nAr=true;YX=false;init=false;
op=true;mult=false;div=false;som=false;soust=false;
}
else if(src==bnCr)
{
aux=Double.parseDouble(txt.getText());
nCr=true;YX=false;init=false;
op=true;mult=false;div=false;som=false;soust=false;
}
/////////************FIN des Fonctions Scientifiques********/////////
else if(src==bOff) System.exit(0);
}
public void itemStateChanged(ItemEvent i)
{
Object srci=i.getSource();
if(srci==Scie)
{
this.resize(452,564);
this.getContentPane().setLayout(new GridLayout(3,1));
this.getContentPane().add(pTxt);this.getContentPane().add(p3);
this.getContentPane().add(p2); this.setLocation(300,100);
}
else if(srci==Norm)
{
//Calculatrice c=new Calculatrice();
this.getContentPane().removeAll();
this.getContentPane().setLayout(new GridLayout(2,1));
this.resize(452,331);
this.getContentPane().add(pTxt);this.getContentPane().add(p2);
this.setLocation(300,100);
// c.show();
// this.dispose();
}
else if(dec)
{
activateOp(false);
String dep=txt.getText();
try
{
String s=fromDec(dep,detBaseDestination(srci));
txt.setText(s);}
catch(NumberFormatException e)
{
txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
txt.setText("ERROR : CONVERTION AVEC VERGULE FLOTTANTE NON SUPPORTEE ");
activateP2P3(false);}
}
else if(bin||oct||hex)
{
try
{
int x= toDec(txt.getText(),detBaseSource());
String s=""+x;
txt.setText(fromDec(s,detBaseDestination(srci)));}
catch(NumberFormatException e)
{
txt.setBackground(Color.LIGHT_GRAY);txt.setForeground(Color.RED);
txt.setText("ERROR : CONVERTION AVEC VERGULE FLOTTANTE NON SUPPORTEE ");
activateP2P3(false);}
}
}
public static void main (String[] args)
{
Calculatrice c=new Calculatrice();
}
}
Conclusion
utilisation simpe. la plupart des tentative d'erreur par l'utilistateur sont prises en charge et elles sont traitées. la premire chose à remarquer c'est que cette calculatrice n'utilise pas les parantheses,je souhaite m'aider à resoudre ce probleme. le bouton 2ndf joue le role du deuxieme fonction seulement pour le cos---->cos-1,sin-->sin-1,tan---->tan-1 et ln--->Log Merci
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
calculatrice avec complexe (java) [ par firexavier ]
bonjour je cherche une calculatrice ou l on peu rentré une expression avec des complexes ... quelqu un aurait til sa ds ses valises ? mERCI
je recherche une calculatrice en java [ par samsambtsig ]
slt!je débute en java et je recherche une calculatrice graphique de base ( sans applet et sans swing ) en java.si qq1 a ca , merci de me l'envoyer a s
programme calculatrice simple en java [ par tenderheart ]
bonjour...j'ai fait un programme calculatrice en java et le probleme c'est que ca n'a pas bien marche...pouvez-vous m'aider....MERCI
programme d'un calcul scientifique avec java [ par ayour1981 ]
bonjour,j'ai un programme qui calcul en 15 points un nombre de paramétre à savoir la température de l'eau .....mais le probleme c'est que lorsque j'in
Calculatrice Java [ par bertho1980 ]
Bonjour! J'aimerais avoir le code source d'une calculatrice scientifique en java. SVP, aidez-moi. Toto
calculatrice java [ par myerly ]
bonjour,j'ai créé une calculatrice en java et je ne trouve pas le code à placer dans le signe = de ma calculatrice?!Merci d'avance
affichage des checkbox [ par sana83 ]
bonjour, j'ai un checkbox [b]jCheck_Modifier[/b].je veux afficher un {} de checkbox quand je coche ce checkbox. voici mon code, les checkbox sont crée
interface graphique java [ par tamalgo ]
Salut tout le monde, voici mon code: [code=java]package LesClasses; import java.io.IOException; import java.util.ArrayList; import java.util.Vector;
@PersistenceContext pour du multi base de données [ par chatis ]
Bonjour, j'ai créé une application de traitement java multi-couche (REST-Manger-DAO-Entity) utilisant java EE 6 JPA/JTA Hibernate. Pas de Spring ni d
|
Derniers Blogs
[FRAMEWORK 4] LES TASKS ET LE THREAD UI[FRAMEWORK 4] LES TASKS ET LE THREAD UI par fathi
Je viens de passer quelques temps au TechDay's et j'ai pu voir pas mal de session intéressante. Par contre une chose m'a un peu étonné lors de certaines de ces sessions qui abordaient les améliorations du framework .NET (donc le 4.5) : en gros, bea...
Cliquez pour lire la suite de l'article par fathi WORKFLOW FOUNDATION 3 A UN PIED DANS LA TOMBEWORKFLOW FOUNDATION 3 A UN PIED DANS LA TOMBE par JeremyJeanson
Depuis déjà un an, je conseille vivement les utilisateurs de Workflow Foundation 3 à migrer vers la version 4. L'information qui va suivre ne devrait donc pas trop prendre au dépourvu les personnes qui m'ont suivi. Je profite de ce poste, pour faire le re...
Cliquez pour lire la suite de l'article par JeremyJeanson TECHDAYS PARIS 2012 : NOUVELLES TENDANCES DU POSTE DE TRAVAIL - BRING YOUR OWN PCTECHDAYS PARIS 2012 : NOUVELLES TENDANCES DU POSTE DE TRAVAIL - BRING YOUR OWN PC par ROMELARD Fabrice
Speakers: Thierry Rapatout, Antoine Petit et Xavier Trebbia Cette session entre dans le cadre des RDV Décideurs des TechDays 2012, elle est liée à la consumérisation de l'IT et la mise en place du "DeskTop as a Service" dans de plus en ...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice TECHDAYS PARIS 2012 : SYSTEM CENTER SERVICE MANAGER 2012 VUE D'ENSEMBLETECHDAYS PARIS 2012 : SYSTEM CENTER SERVICE MANAGER 2012 VUE D'ENSEMBLE par ROMELARD Fabrice
Speakers: Julien Marechal, Gautier Confiant, Sébastien MEYER La session débute par le positionnement de la solution System Center par rapport aux concepts d'organisation ITIL. Le portail du catalogue de se...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice TECHDAYS PARIS 2012 : PLEINIèRE SECOND JOURTECHDAYS PARIS 2012 : PLEINIèRE SECOND JOUR par ROMELARD Fabrice
Après une première journée dédiée aux développeurs, cette seconde journée est dédiée au monde des entreprises et de ses applications. Ainsi, cette pleinière est dédiée à faire un 360 de l'évolution des applications Business aux demandes ac...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice
Forum
RE : SQLRE : SQL par Julien39
Cliquez pour lire la suite par Julien39
Logiciels
Academy System (17.2.1.0)ACADEMY SYSTEM (17.2.1.0)Logiciel de gestion des établissements.
- élèves/étudiants (inscription, dossier, absence...)
-... Cliquez pour télécharger Academy System Easy-Planning (1.0.0.1)EASY-PLANNING (1.0.0.1)Basé sur les mêmes principes que MyPlanning, Easy-Planning permet de créer des plannings sous la ... Cliquez pour télécharger Easy-Planning COLLECTOR PLUS (3.00B)COLLECTOR PLUS (3.00B)COLLECTOR PLUS version 3.00B est un logiciel utilisant une base de données alimentée par :
- L... Cliquez pour télécharger COLLECTOR PLUS PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V7.4)PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V7.4)PONAMEDIA TV DEVIENS HELLLOOO FLASH
LA TV SUR VOTRE ORDINATEUR.
Toute une plateforme Multi... Cliquez pour télécharger PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO LettresFaciles 2011 (8.0.0.1)LETTRESFACILES 2011 (8.0.0.1)LettresFaciles est un logiciel facilitant la création et la rédaction de lettres types.
Son inte... Cliquez pour télécharger LettresFaciles 2011
|