MàJ par récupération sur Clé USB et dans /mnt/hd/Chargement du pc portable

This commit is contained in:
olivier
2008-12-02 23:56:33 +01:00
parent 3e719157ea
commit 5b95264a14
196 changed files with 12561 additions and 10316 deletions

View File

@ -0,0 +1,11 @@
import iutsud.Console;
class BonjourToi1{ // essai d'entr<74>e-sortie caractere avec le package iutsud
public static void main (String[] args) {
String nom;int an;
System.out.print ("tapez votre nom : ");
nom=Console.readLine();
System.out.print ("tapez votre annee de naissance : ");
an=Console.readInt();
System.out.println ("Bonjour "+nom+" ! Vous avez "+(2007-an)+" ans");
}
}