Sure! Below is a simple Java program that fulfills your requirements. The program prompts the user for their name and birth year, calculates their age, and displays the information back to them.
```java
import java.util.Scanner;
public class UserInformation {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
// Prompt user for their name
System.out.print("Enter your name: ");


