Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Sudoku

  1. #1
    Junior Member
    Join Date
    Nov 2013
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Sudoku

    Hello guys. I am new in java and I am trying to make an assingment for my course. The assignment is to make a Sudoku game, but its more like making an app. We have to make sudoku and hypersudoku. We are supposed to have 10 puzzles from each, which we can get ready from websudoku.com. When the app begins it asks you which one you want to play and you then continue. There must be an option if you want to make a new user only with nickname and a list of the users so that you can choose yours. Then it takes one of the 10 puzzles random and begins. When you exit the app it will ask if you want to save so that it will make sure that from the 10 puzzles that the game has no one will appear twice to the same user. Also it needs to keep stats of the user that it will also be seen by the user. So basically we have 10 puzzles taken randomly and if you are a user and you already have played one, you can't play it again. It also must have a help button which shows what are the available numbers in each box, a check button and if the number you are trying to put is wrong, then it wont get accepted. Finally an option to change from numbers (1-9) to letters (A-I) is also needed. Can someone help me? How can I begin? Can you tell me how many classes will I need and what methods am I going to call there? Thanks in advance!


  2. #2
    Super Moderator jps's Avatar
    Join Date
    Jul 2012
    Posts
    2,642
    My Mood
    Daring
    Thanks
    90
    Thanked 263 Times in 232 Posts

    Default Re: Sudoku

    Quote Originally Posted by davasile View Post
    Can someone help me?
    Yes, that is what we aim to do on this forum.
    Quote Originally Posted by davasile View Post
    How can I begin?
    Break the instructions down into an organized set of ideas. Turn nouns into classes, verbs into methods.
    Quote Originally Posted by davasile View Post
    Can you tell me how many classes will I need and what methods am I going to call there?
    That would be stepping over the line between help and spoonfeeding. Start with the suggestions here and see if you can come up with a plan. This assignment is not about putting functional syntax on a disc, it is about software engineering, (the whole project start to finish).

Similar Threads

  1. Help with turning Sudoku into Magic Sudoku
    By Murlio in forum Java Theory & Questions
    Replies: 1
    Last Post: November 4th, 2012, 02:49 PM
  2. Help with Sudoku function please
    By peperez in forum What's Wrong With My Code?
    Replies: 2
    Last Post: November 14th, 2011, 12:40 AM
  3. Sudoku solver
    By Elliott50 in forum Algorithms & Recursion
    Replies: 2
    Last Post: December 22nd, 2009, 02:03 PM
  4. Sudoku coding help...please
    By sketch_flygirl in forum Algorithms & Recursion
    Replies: 2
    Last Post: December 5th, 2009, 10:07 PM
  5. Sudoku
    By mgutierrez19 in forum What's Wrong With My Code?
    Replies: 1
    Last Post: November 30th, 2009, 10:09 PM