ABC Company deals with import and export textiles. The company has few department and about 50 employees. The company has requested you to write a C++ program for file based database for employee in code blocks.
The system must also be able to add employee when new employee joined the company. The system must also be able to edit the record, search for employee record. When Employee leaves the company it must allow them
to delete the record.
You must use C++ program to create file based system to add, view, search, edit, delete the records and we should be able to exit the program
Your program must include necessary validation to accept the correct input for adding and editing record.
Sample screen design of each function is shown below:
You will need to create functions for each of the 5 menu options. Entering the number will call the correct function.
I have done the add, view, delete and exit the program. I just need program for search and edit and validation of the full program.
My program:
#include<iostream>
#include<string>
#include<iomanip>
#include<fstream>
#include<stdlib.h>
#include<string.h>
using namespace std;
void add_rec();//function declaration
void view_rec();
void edit_rec();
void search_rec();
void delete_rec();
void quit();
struct info
{
char ID[4];
char name[21];
char address[36];
int age;
double salary;
};
void add_rec()
{
system(“CLS”);
cout<<“add function.n”<<endl;
info emp;//to hold info about stock
char answer;//to hold Y or N
//open a file for binary output.
fstream info(“employee.dat”, ios::app | ios::out | ios::binary);
do
{
//get data about a person.
cout<<“Enter the following employee data :n”;
cin.ignore();
cout<<“Employee ID: “;
cin.getline(emp.ID,4);
cout<<“Employee name: “;
cin.getline(emp.name,21);
cout<<“Address : “;
cin.getline(emp.address,31);
cout<<” Age : “;
cin>>emp.age;
cout<<“salary: “;
cin>>emp.salary;
cin.ignore();//skip over the remaining newline.
//write the content of the info structure to the file.
info.write(reinterpret_cast<char *>(&emp), sizeof(emp));
//determine whether the user wants to write another record.
cout<<“Do you want to enter another stock record? [Y/N] : “;
cin>>answer;
cin.ignore();//skip over the remaining newline.
}while (answer == ‘Y’ || answer == ‘y’);
}
int main()
{
int choice;
cout<<“Welcome to the employee administration”<<endl;
cout<<“==========================================”<<endl;
cout<<“1. Add employee record.”<<endl;
cout<<“2. view employee record”<<endl;
cout<<“3. search employee record”<<endl;
cout<<“4. edit employee record”<<endl;
cout<<“5. Delete employee record”<<endl;
cout<<“6. exit application.”<<endl;
cout<<“==========================================n”<<endl;
cout<<“enter your choice : “;
cin>>choice;
while(choice != 6)
{
switch(choice)
{
case 1:
add_rec();
break;
case 2:
view_rec();
break;
case 3:
search_rec();
break;
case 4:
edit_rec();
break;
case 5:
delete_rec();
break;
default:
cout<<“n Invalid Choice”<<endl;
cout<<” you can choose between 1 to 6 numbers only.”<<endl;
break;
}
cout<<“===================================”<<endl;
cout<<“1. Add employee record.”<<endl;
cout<<“2. view employee record”<<endl;
cout<<“3. search employee record”<<endl;
cout<<“4. edit employee record”<<endl;
cout<<“5. Delete employee record”<<endl;
cout<<“6. exit application.”<<endl;
cout<<“===================================”<<endl;
cout<<” Enter Your Choice : “;
cin>>choice;
}
quit();
return 0;
}
void quit()
{
cout<<“————————————–“<<endl;
cout<<” Quiting The Application “<<endl;
cout<<“Thank You For Using The System.”<<endl;
cout<<“Bye!!Bye!!”<<endl;
//exit(0);
}
void view_rec()
{
system(“CLS”);
cout<<“View function.n”<<endl;
info emp;
char again;
fstream info;
info.open(“employee.dat”,ios::in | ios::binary);
//test for error.
if(!info)
{
cout<<“Error opening file. program aborting.n”;
}
cout<<“Here are the records in the file.n”;
//read the first record from the file.
info.read(reinterpret_cast<char *>(&emp),sizeof(emp));
//while not at the end of the file, display the record.
while(!info.eof())
{
//display
cout<<” ID: “;
cout<<emp.ID<<endl;
cout<<“Name: “;
cout<<emp.name<<endl;
cout<<“Address: “;
cout<<emp.address<<endl;
cout<<“age: “;
cout<<emp.age<<endl;
cout<<“salary: “;
cout<<emp.salary<<endl;
//wait for the user to press the enter key.
cout<<“npress the enter key to see the next record.n”;
cin.get(again);
//read the nest record from the file.
info.read(reinterpret_cast<char*>(&emp), sizeof(emp));
}
}
void search_rec()
{
cout<<” search function under construction.”<<endl;
}
void edit_rec()
{
cout<<“under construction”<<endl;
}
void delete_rec()
{
system(“CLS”);
info emp;
ifstream info;
char ID[4];
cout<<“nn Delete function”;
cin.ignore();
cout<<” enter employee ID to be deleted:”;
cin.getline(ID, 4);
info.open(“employee.dat”,ios::binary);
if(!info)
{
cout<<“File could not be open !! press any key…”;
cin.ignore();
cin.get();
return;
}
ofstream outfile;
outfile.open(“temp.dat”,ios::out | ios::binary);
info.seekg(0,ios::beg);
while(info.read(reinterpret_cast<char*>(&emp),sizeof(emp)))
{
if(strcmp(emp.ID,ID)!=0)
{
outfile.write(reinterpret_cast<char*>(&emp), sizeof(emp));
}
}
outfile.close();
info.close();
remove(“employee.dat”);
rename(“temp.dat”,”employee.dat”);
cout<<“nntrecord Deleted..”;
cin.ignore();
cin.get();
}
Try it now!
How it works?
Follow these simple steps to get your paper done
Place your order
Fill in the order form and provide all details of your assignment.
Proceed with the payment
Choose the payment system that suits you most.
Receive the final file
Once your paper is ready, we will email it to you.
Our Services
Quality Essay Help has stood as the world’s leading custom essay writing services providers. Once you enter all the details in the order form under the place order button, the rest is up to us.
Essays
At Quality Essay Help, we prioritize on all aspects that bring about a good grade such as impeccable grammar, proper structure, zero-plagiarism and conformance to guidelines. Our experienced team of writers will help you completed your essays and other assignments.
Admissions
Admission and Business Papers
Be assured that you’ll definitely get accepted to the Master’s level program at any university once you enter all the details in the order form. We won’t leave you here; we will also help you secure a good position in your aspired workplace by creating an outstanding resume or portfolio once you place an order.
Editing
Editing and Proofreading
Our skilled editing and writing team will help you restructure you paper, paraphrase, correct grammar and replace plagiarized sections on your paper just on time. The service is geared toward eliminating any mistakes and rather enhancing better quality.
Coursework
Technical papers
We have writers in almost all fields including the most technical fields. You don’t have to worry about the complexity of your paper. Simply enter as much details as possible in the place order section.