CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Mar 2019
    Posts
    3

    Java NetBeans Related Project

    Hello All, I am working on my major project to show some java project as a beginner level and I am trying to build a number guessing game which is system generates a random number from a given range, say 1 to 100. The user is prompted to enter their given number in a displayed dialogue box. The computer then tells if the entered number matches the guesses number or it is higher/lower than the generated number but I am looking one more project to build up, Can anyone suggest me any beginner level free java project name or ideas?

  2. #2
    Join Date
    Aug 2020
    Posts
    1

    Re: Java NetBeans Related Project

    Hi Ankit,

    Here are a few listed beginner level java programming projects:

    Airline reservation system.
    Course management system.
    Data visualization software.
    Electricity billing system.
    e-Healthcare management system.
    Email client software.
    Library management system.
    Network packet sniffer
    Last edited by 2kaud; August 27th, 2020 at 07:08 AM. Reason: Link removed

  3. #3
    2kaud's Avatar
    2kaud is offline Super Moderator Power Poster
    Join Date
    Dec 2012
    Location
    England
    Posts
    7,822

    Re: Java NetBeans Related Project

    Quote Originally Posted by rohanjoshi0894 View Post
    Hi Ankit,

    Here are a few listed beginner level java programming projects:

    Airline reservation system.
    Course management system.
    Data visualization software.
    Electricity billing system.
    e-Healthcare management system.
    Email client software.
    Library management system.
    Network packet sniffer
    Beginner projects?????
    All advice is offered in good faith only. All my code is tested (unless stated explicitly otherwise) with the latest version of Microsoft Visual Studio (using the supported features of the latest standard) and is offered as examples only - not as production quality. I cannot offer advice regarding any other c/c++ compiler/IDE or incompatibilities with VS. You are ultimately responsible for the effects of your programs and the integrity of the machines they run on. Anything I post, code snippets, advice, etc is licensed as Public Domain https://creativecommons.org/publicdomain/zero/1.0/ and can be used without reference or acknowledgement. Also note that I only provide advice and guidance via the forums - and not via private messages!

    C++23 Compiler: Microsoft VS2022 (17.6.5)

  4. #4
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: Java NetBeans Related Project

    Quote Originally Posted by 2kaud View Post
    Beginner projects?????
    Guessing we're talking about simple university level projects not complete commercial grade applications.

  5. #5
    Join Date
    Feb 2017
    Posts
    677

    Re: Java NetBeans Related Project

    Quote Originally Posted by ankitdixit View Post
    The user is prompted to enter their given number in a displayed dialogue box. The computer then tells if the entered number matches the guesses number or it is higher/lower than the generated number but I am looking one more project to build up
    You could have a version with reverse roles where the user thinks of a number and the computer guesses. When the computer comes up with a number the user enters whether the guess is higher or lower.

    To make the computer as good at guessing as possible the programmer must implement a binary search which makes this guessing game a little harder to program than the original.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured