QUOTE(spit-king @ 16 Apr, 2008 - 03:03 PM)

can you put the whole lyrics in here?:
I guess that if you cut & paste the code from this topic you can also cut&paste the lyric
you will just have to add the " before every line
and add a " after every line plus a "," but for the last one
QUOTE(spit-king @ 16 Apr, 2008 - 03:03 PM)

and my school doesnt use scanner so what do i do with this:
Scanner scan = new Scanner(System.in);
The Scanner object is part of Java, it is used to scan input... in your case the console
so don't worry we won't use your school scanner... would be hard to insert it into your PC
just make sure to put the line
CODE
import java.util.Scanner;
at the beginning of your code as in the code I wrote for you
Before you used
CODE
name = ReadLib.readString ();
but I do not have your ReadLib library so I used a standard Java one which is Scanner