//
#include <stdio.h>
int main (void)
{int currentornew; /*This is where if the user inputs a 0 they will automatically be brought to insert hours for employees.*/
int newemployee; /*This is where if the user inputs a 1 they will autmatically be taken to information of adding a new employee.*/
int choice;
/*Processing Phase*/
/*Get the user input*/
//3 function call outs : Editing, Adding, New
printf(" Welcome to ESLR, LLC \n"
"1-Enter Employee Hours \n"
"2-Edit Employee Information \n"
"3-Add New Employee \n"
"4-Exit Program \n"); /*Prompt for input*/
scanf( "%d", ¤tornew);
while ( ( choice = currentornew() ) != 4) {
switch ( choice ) {
//update employee
case 1:
break;
//new employee
case 2:
break;
//deleting employee
case 3:
break;
//exiting the program
case 4:
//I believe this allows them to exit!
break;
//enter a number dumbass!
default:
printf( "Incorrect Choice\n");
break;
return 0;
} //end while statement
} //succesful programming
}//