I dont like this sequence because i should input first the name before showing the next input fields i want to happen is showing all the input fields then i can use the arrow keys to scroll up and down.

Code:
System.out.print("Enter Your Name: ");
name =input.readLine();
System.out.print("Enter Your Age: ");
age =input.readLine();
System.out.print("Your Address: ");
add = input.readLine();
This is i want to happen:

Enter Your Name:________
Enter Your Age:__________
Your Address:___________