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 6 of 6

Thread: Projects For A Beginner Programmer

  1. #1
    Junior Member
    Join Date
    Aug 2014
    Location
    New Zealand
    Posts
    8
    My Mood
    Amazed
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Lightbulb Projects For A Beginner Programmer

    Hi, there.

    My name is Bradley and I have just started learning JAVA. I was hoping I could get some suggestions on programs/projects I could make that would be fun but I would learn a lot from.

    Regards, Bradley.
    Last edited by tazeunite00; August 30th, 2014 at 11:09 PM. Reason: mistake made


  2. #2
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: Projects For A Beginner Programmer

    Get a book, start at the beginning, read every page, work every example problem, and complete every exercise at the end of each chapter. Jumping from fun project to fun project is an inefficient and often discouraging way to learn to program and not recommended.

  3. #3
    Junior Member
    Join Date
    Aug 2014
    Location
    New Zealand
    Posts
    8
    My Mood
    Amazed
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Re: Projects For A Beginner Programmer

    Quote Originally Posted by GregBrannon View Post
    Get a book, start at the beginning, read every page, work every example problem, and complete every exercise at the end of each chapter. Jumping from fun project to fun project is an inefficient and often discouraging way to learn to program and not recommended.
    Hi, there.

    Thanks for your reply, I have already read through a book of good quality. I am now just trying to expand my knowledge a little more.

    Regards, Bradley.

  4. #4
    Member Ada Lovelace's Avatar
    Join Date
    May 2014
    Location
    South England UK
    Posts
    414
    My Mood
    Angelic
    Thanks
    27
    Thanked 61 Times in 55 Posts

    Default Re: Projects For A Beginner Programmer

    What you decide to create with that knowledge you have built is at the end of the day
    totally up to you. One thing you may want to do however is begin to create a text adventure
    game (using console).

    From each chapter of the book - take the concepts you learnt each time and implement them
    into the game. For example, you could have a basic player class such as:

    public class Player {
        // Player constructor
        public Player(Sting name, int hp, int xp, String defWeapon) {
            setName(name);
            setHp(hp);
            setXp(xp);
            setDefaultWeapon(defWeapon);
        }
     
        // set methods
     
       // get methods
     
        // other methods and code relating to Player
    }

    Which would only incorporate the most basic of OOP concepts and Java taught up
    to that point. As you have moved through each chapter, add new ideas and features to
    the classes and the game you learnt next. Such as an array to hold the player inventory
    for example.

    Just a fun idea - which builds step by step on the ground basics of Java as you advance.

    Wishes Ada xx
    If to Err is human - then programmers are most human of us all.
    "The Analytical Engine offers a new, a vast, and a powerful language . . .
    for the purposes of mankind
    ."
    Augusta Ada Byron, Lady Lovelace (1851)

  5. #5
    Member jdv's Avatar
    Join Date
    Jul 2014
    Location
    This Land
    Posts
    73
    Thanks
    0
    Thanked 5 Times in 5 Posts

    Default Re: Projects For A Beginner Programmer

    Quote Originally Posted by tazeunite00 View Post
    My name is Bradley and I have just started learning JAVA. I was hoping I could get some suggestions on programs/projects I could make that would be fun but I would learn a lot from.
    https://projecteuler.net/

    This would exercise what they call "the fundamentals" in sports.

  6. #6
    Junior Member
    Join Date
    Sep 2014
    Location
    India
    Posts
    18
    My Mood
    Fine
    Thanks
    11
    Thanked 2 Times in 2 Posts

    Default Re: Projects For A Beginner Programmer

    so try this one as beginner..... If a five-digit number is store in a variable in code, write a program to print a new number by adding one to each of its digits. For example if the number that is input is 12391 then the output should be displayed as 23402.

Similar Threads

  1. JAVA Programmer Beginner
    By tigger7391 in forum What's Wrong With My Code?
    Replies: 2
    Last Post: August 17th, 2014, 02:48 AM
  2. Would appreciate help (Beginner programmer)
    By TSSF44 in forum Java Theory & Questions
    Replies: 5
    Last Post: October 18th, 2013, 04:39 AM
  3. tips for beginner programmer
    By Syahdeini in forum The Cafe
    Replies: 1
    Last Post: July 11th, 2012, 09:31 PM
  4. Java projects for beginner
    By hexwind in forum Java Theory & Questions
    Replies: 5
    Last Post: August 8th, 2011, 08:05 PM
  5. Beginner java programmer!
    By chrisivey1980 in forum What's Wrong With My Code?
    Replies: 8
    Last Post: April 23rd, 2011, 03:06 AM

Tags for this Thread