Answer:
Code:
import java.util.*;
public class Greetings
{
public static void main(String[] args)
{
Scanner s = new Scanner(System.in);
System.out.println(getGreetings(s));
}
private static String getGreetings(Scanner console)
{
System.out.print("Please enter your first name: ");
String firstName=console.next();
char firstChar=firstName.toUpperCase().charAt(0);
System.out.print("Please enter your last name: ");
String lastName=console.next();
lastName=lastName.toUpperCase().charAt(0)+lastName.substring(1, lastName.length());
System.out.print("Please enter your year of birth: ");
int year=console.nextInt();
int age=getCurrentYear()-year;
return "Greetings, "+firstChar+". "+lastName+"! You are about "+age+" years old.";
}
private static int getCurrentYear()
{
return Calendar.getInstance().get(Calendar.YEAR);
}
}
Output:-