Thread: help student
View Single Post
  #11 (permalink)  
Old 01-29-2008, 11:43 PM
tim's Avatar
tim tim is offline
Senior Member
 
Join Date: Dec 2007
Location: South Africa
Posts: 334
tim is on a distinguished road
Line 11: Its a case problem again. "String" is a class and is spelled with a capital "S".
Change it to
Code:
String orig, processed, letter;
Line 13: The Scanner class is not a standard java tool. It must be imported. Add the code:
Code:
import java.util.Scanner;
before
Code:
public class PalindromeCheck
For loops: You need to add int:
Code:
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.
__________________
If your ship has not come in yet then build a lighthouse.
Reply With Quote