How would i write this code?

Design a program that will be used at a local night club. Users of the system will be managers, waiters and bartenders. Waiters and bartenders will have the same privileges/interface. All users will need to sign into the program. Two administrators, one waitress and one bartender should be in the system by default. Every user will have their own password and will select their name from a list of names. Ask the user for the current date before login. Data should be stored using parallel arrays.

Bartenders/Waitress menu should allow to 1) enter an order, 2a) view outstanding orders (current customers in the night club), 2b) convert outstanding order to completed order 3) completed orders, 4) total tips, 5) sign-in/sign-out.

Order should have a description, customer location, waitress/bartender name and total price

When an order is completed, a tip (if received) needs to be able to be added to the order.

Administrator menu should be able to 1) sign-in, sign-out, 2) see all employees, 3) see checked-in employees, 4) see outstanding orders, 5) see all completed orders and 6) See everyone’s tips total and 7) add an employee
Last edited on
Anything so far?

Aceix.
yea @aciex but it won't let me post it b/c its too long
#include<iomanip.h>
#include<conio.h>
#include<fstream.h>
#include<graphics.h>
#include<dos.h>
#include<process.h>
#include<stdlib.h>
#include<stdio.h>
//********CLASS->RESTAURANT***********///
class rest
{
private:
char item[40];
int cost;
int code;
long int sum;
public:
void get(void);
void put();
void read();
void show();
int search();
int price();

}t;


int rest::search()
{return code;
}
int rest::price()
{return cost;
}
Please edit your post and make sure your code is [code]between code tags [/code] so that it has syntax highlighting and line numbers, as well as proper indentation.
http://www.cplusplus.com/articles/jEywvCM9/

Its too long? Your post suggest you dont know how to write the code, so how can it be too long?
Show only some relevant stuff. And ask specific questions. We cant just help you with all of your instructions. What is it you specifically dont understand?
Topic archived. No new replies allowed.