I have this bit of code...
System.out.prin tln ("Enter the name of book: ");
bookName = scan.nextLine() ;
then i have code after that that prints out what i want it to. But when it gets to this part of my code it just jumps the println methods i have called. What little code snipet do i need for it to let me type in the name of the book before it moves on?
Thanks!
System.out.prin tln ("Enter the name of book: ");
bookName = scan.nextLine() ;
then i have code after that that prints out what i want it to. But when it gets to this part of my code it just jumps the println methods i have called. What little code snipet do i need for it to let me type in the name of the book before it moves on?
Thanks!
Comment