import javax.swing.JOptionPane; import java.util.Calendar; class BonjourToi2 { // essai de hello world avec une entree et une sortie Swing public static void main (String[] args) { String nom,ch; int an,anneeCourante; anneeCourante=Calendar.getInstance().get(Calendar.YEAR); nom=JOptionPane.showInputDialog("taper votre nom "); ch=JOptionPane.showInputDialog("taper votre annee de naissance (4chiffres)"); System.out.println("nom="+nom+"; naiss="+ch+"; annee courante : "+anneeCourante); an=Integer.parseInt(ch); JOptionPane.showMessageDialog(null,"Bonjour "+nom+"! Vous avez "+(anneeCourante-an)+"ans"); System.exit(0); } }