I am studying in 2nd year of college. For my project work i want to do something in programming with c++. I need some ideas for it, can anyone give me some ideas on the project. I have done programming in school and college also.
Please help.
May be you can try Making one f these (I have made them myself):
* 2-Player Tic-Tac-Toe
* 1- Player Tic-Tac-Toe
* Hangman
* Connect 4
* Simulation of a bank with some Accounts:
my version (not complete) can:
**Set a random amount of money in an account at the beginning of the simulation.
**Deposit or withdraw a random amount of money (with 35% probability of withdraw)
**Take Loans with compound Interest. Amount less than balance.
**The people get compound interest on their balances every quarter.
**Maintain 10 Accounts, with 4 changes per day.
sorry ,but i don't like game programming. but anyways thanks Nisheeth.
Today i contacted my prof. and he told me that he can offer me a new project on gui programming. he has given me a task to see what can i do. the task is to use any C++ GUI API to create a graph.
TheCreator, if you like you can help.
I won't practically call the ones I made as Games programming.
I made them in the console (using a little bit of Win API to manipulate colour & such!).
I suggested these because they use a lot of skills of C++ programming.
If you can come up with an idea for an app that relates to one of your interests, or even chores, it would give your project more of a point. And you'd end with something you can carry on using at the end.
A good project would have a clear, easy to reach, short term goal. But it will also have plenty of potential for extension.
I'm currently out of work, so I'm working on a personal project to keep my various skills active. The project I decided upon was a French vocabulary trainer -- to help me with my French studies (I'm doing an evening class). So the time I spend testing the app is also time spent improving my French.
The short term goal was a little console app that read a text file (using iostream) containing English/French word pairs -- very similar to the ones the beginners ask about on this site. Most of the effort at this stage was typing in the data.
But the project has since evolved to use a SQLite database, XML configuration file, and a WTL GUI, and rather than just displaying single words it now (almost) knows how to put together simple sentences, to give me some practice with algorithms (I say almost as my program still makes mistakes!).
This project has also led me to find a new interest in lingusitics.