PROJECTS for C++

Aug 12, 2018 at 11:08am
Some cool C++ project ideas or links aside from Database management system....
Aug 12, 2018 at 1:35pm
I wrote a sudoku solver and found that it used many interesting programming constructs: classes, callback functions, bitmaps, recursion and some interesting algorithms. Look up some of the techniques to solve sudoku and then start coding. You'll have fun.
Aug 12, 2018 at 6:00pm
1- Create an advanced calculator that can solve operations as:
1
2
3
4
5
1+5 // 6
5*3+4 // 19
4+5*3 // 19
(4+5)*3 // 27
1+5/2+4*2 // 11.5 

Hint: Create a class named Token_stream to tokenize the input.
The class should contain two necessary fucntions putback() and get()
to get the current buffer.

Make sure to deal with any kind of bad input using exceptions <stdexcept>.

Contact me anytime if you need any help (FewDieFie@hotmail.com)

Last edited on Aug 12, 2018 at 6:58pm
Topic archived. No new replies allowed.