> um... yeah but u c i just need someone to tell me how
> to get started.. (i.e. move a pawn one space in
> front) i just need something as simple as that
Build a model of the chess board. Place the chess pieces on the board. Given the position of a pawn you wish to move, determine if the pawn can be moved. If so then move it.
> nononono i didnt mean simple by that... i mean like
> is there a code to show me how to move a piece... so
> i can use it as a reference and continue with my
> project
"Moving a piece" involves lots of elements and steps. What part of it is giving you trouble? If the answer is "all of it," then go through the tutorial that was linked earlier, and probably one or more of these:
[url=http://java.sun.com/docs/books/tutorial/]Sun's basic Java tutorial[/url]
[url=http://java.sun.com/learning/new2java/index.html]Sun's New To Java Center[/url]. Includes an overview of what Java is, instructions for setting up Java, an intro to programming (that includes links to the above tutorial or to parts of it), quizzes, a list of resources, and info on certification and courses.
[url=http://javaalmanac.com]http://javaalmanac.com[/url]. A couple dozen code examples that supplement [url=http://www.amazon.com/exec/obidos/tg/detail/-/0201752808?v=glance]The Java Developers Almanac[/url].
[url=http://www.jguru.com]jGuru[/url]. A general Java resource site. Includes FAQs, forums, courses, more.
[url=http://www.javaranch.com]JavaRanch[/url]. To quote the tagline on their homepage: "a friendly place for Java greenhorns." FAQs, forums (moderated, I believe), sample code, all kinds of goodies for newbies. From what I've heard, they live up to the "friendly" claim.
Bruce Eckel's [url=http://mindview.net/Books/DownloadSites]Thinking in Java[/url] (Available online.)
Joshua Bloch's [url=http://www.amazon.co.uk/exec/obidos/Author=Bloch,%20Josh]Effective Java[/url]
Bert Bates and Kathy Sierra's [url=http://www.amazon.com/exec/obidos/tg/detail/-/0596004656?v=glance]Head First Java[/url].
James Gosling's [url=http://www.bookpool.com/sm/0321349806]The Java Programming Language[/url]. Gosling is
the creator of Java. It doesn't get much more authoratative than this.
> can you please help me... that will be my final
> question if u can solve it. Promise
That's a hollow promise. If you refuse to learn, then you won't be able to do the next step.
Do your own work. There are plenty of examples in the documents referenced earlier. Learn at least a little and if you have a specific question (not just "do it for me") ask then.