The last bits
Code:
else
{System.out.println("Char is greater than a but not a letter: "+symbol+" - "+(double)(symbol));}
}
else
{System.out.println("Char is between Z and a: "+symbol+" - "+(double)(symbol));}
}
}
else {System.out.println("Char is less than A: "+symbol+" - "+(double)(symbol));}}}
You should not print the symbol as it will probably contain a control character which will mess you display up
Remove all the "+symbol+" bits
You also seem to have a misunderstanding about casting (double)(symbol) bits
println & indeed anything expecting a String type will perform a toString() if it can
Also casting is between numeric types only, it has nothing to do with String!
Do not use Wordpad, either use notepad or try some other simple text editor, wordpad is a mini wordprocessor (I use Notepad++ from sourceforge)