guys, suppose I have a text file with the following format
name lastname gpa major advisor
my problem here is with major which is sometimes compose of two words, but in my loop the second word of major becomes the first word of advisor... how could I get around that?
don't tell me
major = in.next(); major += in.next();
b/c some major have only one word..