Thread: help student
View Single Post
  #7 (permalink)  
Old 01-30-2008, 12:31 AM
jvasilj1 jvasilj1 is offline
Member
 
Join Date: Jan 2008
Posts: 26
jvasilj1 is on a distinguished road
lol...i just changed it...then i checked here and saw ur post...hey thanks a lot in helping a novice work his way out...now it jumped to 8 errors....but im starting to get the hang of it.
------------------------------------------------
C:\Documents and Settings\dpuser\My Documents\PalindromeCheck.java:11: cannot find symbol
symbol : class string
location: class PalindromeCheck
string orig, processed, letter;
^
C:\Documents and Settings\dpuser\My Documents\PalindromeCheck.java:13: cannot find symbol
symbol : class Scanner
location: class PalindromeCheck
Scanner con = new Scanner(System.out);
^
C:\Documents and Settings\dpuser\My Documents\PalindromeCheck.java:13: cannot find symbol
symbol : class Scanner
location: class PalindromeCheck
Scanner con = new Scanner(System.out);
^
C:\Documents and Settings\dpuser\My Documents\PalindromeCheck.java:17: cannot find symbol
symbol : variable i
location: class PalindromeCheck
for(i = 0; i < orig.length( ); i++)
^
C:\Documents and Settings\dpuser\My Documents\PalindromeCheck.java:17: cannot find symbol
symbol : variable i
location: class PalindromeCheck
for(i = 0; i < orig.length( ); i++)
^
C:\Documents and Settings\dpuser\My Documents\PalindromeCheck.java:17: cannot find symbol
symbol : variable i
location: class PalindromeCheck
for(i = 0; i < orig.length( ); i++)
^
C:\Documents and Settings\dpuser\My Documents\PalindromeCheck.java:19: cannot find symbol
symbol : variable i
location: class PalindromeCheck
letter = orig.charAt(i);
^
C:\Documents and Settings\dpuser\My Documents\PalindromeCheck.java:21: cannot find symbol
symbol : method toUpperCase()
location: class java.lang.Character
processed += Character.toUpperCase( );
^
8 errors

Tool completed with exit code 1
-----------------------------------------------
now the errors are after that line so i know everything before it is ok...i guess im learning something, but now i dont know what is wrong with line 11
Reply With Quote