Hey!
I don't know if this query is in the correct place. If it isn't, sorry, and could someone please move it.
I am making a Volume calculator as my first piece of coursework and I need the user to input their measurements. I have done this using the following code:
// This will ask the user to input the length
System.out.println("Please enter the length: (in centimetres)");
length = console.nextInt();
What I am wandering is, How do I make it so before this bit comes up, I can say something like "Welcome to my Volume Calculator, Press Enter to continue"?
(This is not needed for my coursework, I just wanna make it look a little nicer/professional.
Thank you for reading and your help.
Curtis.