View Single Post
  #6 (permalink)  
Old 05-05-2008, 05:09 AM
Eranga's Avatar
Eranga Eranga is offline
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 2,322
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
You asking that how to implement that method? There have few errors in your code. Try this.

Code:
// Collect data from the user public void getdata() { Scanner kb = new Scanner(System.in); System.out.print("Enter Name : "); name = kb.nextLine(); System.out.print("Enter ID : "); id = kb.nextInt(); System.out.print("Enter Salary : "); salary = kb.nextInt(); }
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Has someone helped you? Then you can
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
their helpful post.

Want to make your IDE the best?
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Reply With Quote