import java.util.Scanner; import java.util.Calendar; public class Age { public static void main(String[] args) { Calendar now = Calendar.getInstance(); int currentYear = now.get(Calendar.YEAR); int currentMonth = now.get(Calendar.MONTH) + 1; int currentDay = now.get(Calendar.DAY_OF_MONTH); Scannner input = new Scanner(System.in); // Print appropriate prompts, and use input to read birthday. // Then determine age based on current date. } }