954,498 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

C++ Mini Project

I need ideas for a C++ mini project. It should be complex enough to involve 4 students.

rogue005
Newbie Poster
12 posts since Sep 2009
Reputation Points: 10
Solved Threads: 0
 

We help with specific C++ problems here, we aren't going to think up a project for you.

William Hemsworth
Posting Virtuoso
1,591 posts since Mar 2008
Reputation Points: 1,429
Solved Threads: 129
 

It is hard to suggest any project when we don't even know what have you learned and what are you capable of.

invisal
Posting Pro
562 posts since Mar 2005
Reputation Points: 350
Solved Threads: 64
 

there r so many projects in c++...
u may choose among mouse programming/compiler construction/hardware interaction/scientific calculator

oop'stechie
Newbie Poster
4 posts since Jul 2009
Reputation Points: 10
Solved Threads: 1
 

I have learnt C,C++, basics of data comm., Algorithms. Right now I am doing my 5th sem in BE info. sci.

rogue005
Newbie Poster
12 posts since Sep 2009
Reputation Points: 10
Solved Threads: 0
 
Alex_
Junior Poster
175 posts since Jun 2008
Reputation Points: 10
Solved Threads: 3
 

I already know this kind of game: we make suggestions and never it's a good suggestion because either it's too difficult, or too easy, or too boring, or whatever else.

You know what you can and can't, you also know what interests you, combine your creativity with these two elements and I'm sure you'll find something.

tux4life
Nearly a Posting Maven
2,350 posts since Feb 2009
Reputation Points: 2,134
Solved Threads: 243
 
I need ideas for a C++ mini project. It should be complex enough to involve 4 students.

help us to run the code below...please2...

#include
#include
using namespace std;

void menu (double, double&);


int main()
{
system("TITLE Orville .3");
char username[8];
char password[8];
char doagain;

do//start of first do statment
{
cout << "WELCOME TO SAN EKSPRESS BOOKING TICKET SOUTH COUNTRY ONLY" << endl;
cout << "LOGIN" << endl;
cout << endl;
cout << "Username: " << endl;
cin >> username;
if (strcmp(username, "O")== 0)
{//start of my first if, "if username isnt orville end program"
}
else
{
cout << "Incorrect" << endl;
system("pause");
return 0;
}//end of entire if statement

cout << "Password: " << endl;
cin >> password;
if (strcmp(password, "1234")== 0)
{//start of my first if, "if username isnt orville end program"
}
else
{
cout << "Incorrect" << endl;
system("pause");
return 0;
}//end of entire if statement

}
}
void menu (double, double&)


[
double num;
//double total;
double price1, price2, price3;
char choice;

price1 = 15.00;
price2 = 20.00;
price3 = 10.00;

for (;;)
{
do
{
cout<<"Welcome to SAN Express.\n"<>choice;
}
while ( choice < '1' || choice > '6' && choice != 'q');
if (choice == 'q') break;
switch (choice)
{
case '1':
cout<<"Please enter a number of seats\n"<>num;
cout<<"Your Total Is : RM"<>num;
cout<<"Your Total Is : RM"<>num;
cout<<"Your Total Is : RM"<> doagain;
}
while (doagain=='y' || doagain=='Y'); //end of do..while statemnt
system("pause");
return 0;
}//end of main code

alibabashaun
Newbie Poster
1 post since Oct 2010
Reputation Points: 9
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You