Skip to Main Content

Java Programming

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

this is a very simple program but i need help...

807606Mar 19 2007 — edited Mar 19 2007
class Page {

Page a = new Page();

int ageOfMichael = a.giveAge();

int giveAge() {

return 16;
}

System.out.println(ageOfMichael);
}

it keeps saying <identifier> expected on the System.out.println line.

it's saved as Page.java by the way,
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 16 2007
Added on Mar 19 2007
3 comments
77 views