Could you help me understand how to get the same result by usint \n?
System.out.println("Balance: " + balance);
System.out.println();
I have tried something like
System.out.println("Balance: " + balance +\n);
Not working. Don't know whether it is possible or not.