Line 11: Its a case problem again. "String" is a class and is spelled with a capital "S".
Change it to
String orig, processed, letter;
Line 13: The Scanner class is not a standard java tool. It must be imported. Add the code:
import java.util.Scanner;
before
public class PalindromeCheck
For loops: You need to add
int:
for(int i = 0; i < orig.length( ); i++)
It's getting late on this side of the planet. About 11:41 pm. I'm logging of now.
Good luck jvasilj1.
