Thread: Program ideas...

  1. #1
    Registered User
    Join Date
    Nov 2002
    Posts
    3

    Arrow Program ideas...

    I need some help. I'm running low on ideas for programs to write. I understand basic and some intermediate C++. I did write a calculator, and some other programs. It just seems like every idea that pops in my head seems either boring or too advanced for me. Writing games isn't really my thing, applications mainly.

    Maybe someone should make a list of good programs for people to write and put it up on the site.

    Thank you

  2. #2
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    Heh, my problem is too many ideas

    How about:

    1) A program which strips HTML tags from file and generates statistics for a hypothetical browser, such as image size, justification etc, er, then just email me that one when your done

    2) A winzip style program that packs files into one, plus allows viewing of the packed contents, such as filenames, sizes, etc. As a bonus, add compression.

    3) A program that simulates an electronic circuit, generating values in real time based on input from the keyboard. Implement filters and modulators as a bonus.

    4) Calculate pi. Have the program run in the background for as long as possible. It should append results to the screen.

    5) A console-based flight simulator that responds in real time to keyboard input. Track fuel, windspeed, direction, altitude, etc., and simulate external variations of temperature, pressure, windshear, etc. Use threads.

    6) A program which turns ordinary files into meta-files, using your own meta-file format. ie:
    [user passes a file to the command line] conv_with_einstein.doc
    [prompt] "What subject is this?"
    "science"
    ..etc...
    ...such that it generates a file conv_with_einstein.mft, so that when you search your "knowledge base", you can look up content based on type/keywords/etc.

    7) A program that runs upon startup and constantly monitors whether you're connected to the internet. If so, the program shows in the corner of the desktop, if not, hidden.
    Code:
    #include <cmath>
    #include <complex>
    bool euler_flip(bool value)
    {
        return std::pow
        (
            std::complex<float>(std::exp(1.0)), 
            std::complex<float>(0, 1) 
            * std::complex<float>(std::atan(1.0)
            *(1 << (value + 2)))
        ).real() < 0;
    }

  3. #3
    Registered User
    Join Date
    Feb 2002
    Posts
    93

    dont suppose..

    don't suppose u know windows programming yet?
    i got a ton of programming tasks windows wise.. as for console or whatever not too many applications i can think of making..

  4. #4
    CS Author and Instructor
    Join Date
    Sep 2002
    Posts
    511

    Thumbs up

    Have you ever thought of solving programming problems in textbooks. These are usually at the end of the chapters. OOP ones are especially good!!
    Mr. C: Author and Instructor

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. I need some help with my program please.
    By agentxx04 in forum C Programming
    Replies: 9
    Last Post: 09-26-2004, 07:51 AM
  2. my server program auto shut down
    By hanhao in forum Networking/Device Communication
    Replies: 1
    Last Post: 03-13-2004, 10:49 PM
  3. Replies: 3
    Last Post: 01-14-2003, 10:34 PM
  4. Program doesn't always do whats expected... any ideas? (newbie)
    By photoresistor in forum C++ Programming
    Replies: 4
    Last Post: 12-07-2002, 02:49 AM
  5. Program Idea's
    By devour89 in forum C++ Programming
    Replies: 11
    Last Post: 12-04-2002, 04:57 AM