2023 ABC Company deals with import and export textiles The company has few department and about 50 employees The | Assignment Collections

Computer Science 2023 C++ Question To Be Done In Code Blocks

2023 ABC Company deals with import and export textiles The company has few department and about 50 employees The | Assignment Collections

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();

 

}

 

We give our students 100% satisfaction with their assignments, which is one of the most important reasons students prefer us to other helpers. Our professional group and planners have more than ten years of rich experience. The only reason is that we have successfully helped more than 100000 students with their assignments on our inception days. Our expert group has more than 2200 professionals in different topics, and that is not all; we get more than 300 jobs every day more than 90% of the assignment get the conversion for payment.

Place Order Now

#write essay #research paper #blog writing #article writing #academic writer #reflective paper #essay pro #types of essays #write my essay #reflective essay #paper writer #essay writing service #essay writer free #essay helper #write my paper #assignment writer #write my essay for me #write an essay for me #uk essay #thesis writer #dissertation writing services #writing a research paper #academic essay #dissertation help #easy essay #do my essay #paper writing service #buy essay #essay writing help #essay service #dissertation writing #online essay writer #write my paper for me #types of essay writing #essay writing website #write my essay for free #reflective report #type my essay #thesis writing services #write paper for me #research paper writing service #essay paper #professional essay writers #write my essay online #essay help online #write my research paper #dissertation writing help #websites that write papers for you for free #write my essay for me cheap #pay someone to write my paper #pay someone to write my research paper #Essaywriting #Academicwriting #Assignmenthelp #Nursingassignment #Nursinghomework #Psychologyassignment #Physicsassignment #Philosophyassignment #Religionassignment #History #Writing #writingtips #Students #universityassignment #onlinewriting #savvyessaywriters #onlineprowriters #assignmentcollection #excelsiorwriters #writinghub #study #exclusivewritings #myassignmentgeek #expertwriters #art #transcription #grammer #college #highschool #StudentsHelpingStudents #studentshirt #StudentShoe #StudentShoes #studentshoponline #studentshopping #studentshouse #StudentShoutout #studentshowcase2017 #StudentsHub #studentsieuczy #StudentsIn #studentsinberlin #studentsinbusiness #StudentsInDubai #studentsininternational