> for example, if I printed:
>
> Would you like to withdraw(w) or deposit(d) money?
>
> After the user responded, if I wanted to display
> account information without the above question there
> anymore how would I go about that?
System.out.println("Would you like to withdraw(w) or deposit(d) money?");
for(int i = 0; i < 100; i++)
{
System.out.println("");
}
System.out.println("Would you like to exit now?");