This is what I got so far, ignore the fact that stuff is missing...
if (fnum > snum && fnum > tnum && snum > tnum){
System.out.println(fnum\n snum\n tnum);
So basically I want to have fnum snum and tnum all in a lane however I can't just do like:
System.out.println(fnum, snum, tnum);
because its giving me an error.
Any help? I can't figure this out at all and google searches are not being too helpful...