31 lines
652 B
Java
31 lines
652 B
Java
|
package fr.blankoworld.g5a;
|
|||
|
|
|||
|
import java.util.*;
|
|||
|
import java.text.*;
|
|||
|
|
|||
|
import iutsud.Console;
|
|||
|
|
|||
|
public class BonjourToi {
|
|||
|
|
|||
|
/**
|
|||
|
* @param args
|
|||
|
*/
|
|||
|
public static void main(String[] args) {
|
|||
|
// TODO Auto-generated method stub
|
|||
|
String x;
|
|||
|
int y;
|
|||
|
int annee;
|
|||
|
|
|||
|
System.out.println("Saisissez votre pr<70>nom : ");
|
|||
|
x=Console.readLine();
|
|||
|
System.out.println("Saisissez votre date de naissance : ");
|
|||
|
y=Console.readInt();
|
|||
|
|
|||
|
DateFormat format = new SimpleDateFormat("yyyy");
|
|||
|
annee = Integer.parseInt(format.format(new Date()));
|
|||
|
|
|||
|
System.out.println("Bonjour " + x + ", vous avez " + (annee - y) + " ans.");
|
|||
|
}
|
|||
|
|
|||
|
}
|