Thread
:
Programm Error: cannot find symbol Help?
View Single Post
#
3
(
permalink
)
12-10-2007, 07:30 AM
revathi17
Member
Join Date: Aug 2007
Posts: 22
From what you have posted, you have used length() as a method like grades.length()
but length is an attribute of the array, it is not a method
you have to call it like this: grades.length
Code:
for (int i=0; i<grades.length; i++) { }
Hope this helps..
-R
revathi17
View Public Profile
Send a private message to revathi17
Find all posts by revathi17