View Single Post
  #3 (permalink)  
Old 03-24-2008, 03:55 PM
hardwired hardwired is offline
Senior Member
 
Join Date: Jul 2007
Posts: 1,222
hardwired is on a distinguished road
Code:
C:\jexp>javac pr2.java pr2.java:33: ';' expected name.setName = input.nextLine()); ^ 1 error
On line 33 change this
Code:
name.setName = input.nextLine());
to this
Code:
name.setName = input.nextLine();
Reply With Quote