write alogrithms for the following blocks of code... 2nd Block: int main() { //-------defining variables and initializing them------------- HRM info ; int c; char operation,ch; //--------Printing my name on screen---------------- cout<< "Welcome to XYZ HR System Management by Kaiser, James."<>c)) //Reciving vaiables from input : is it no/character ? { cout << "Please enter a number! Try again: "; cin.clear (); cin.ignore (1000, '\n'); // Skip to next newline or 1000 chars, // whichever comes first. } switch(c) { case 1: cout<<"\nEnter the information of the new employee"<>ch; } while(ch=='y'||ch=='Y'); system("pause"); return 0; }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Topic Video
Question

write alogrithms for the following blocks of code...

2nd Block:

int main()
{
//-------defining variables and initializing them-------------


HRM info ;

int c;
char operation,ch;
//--------Printing my name on screen----------------
cout<< "Welcome to XYZ HR System Management by Kaiser, James."<<endl;
cout<<"**************************************************************************"<<endl;
cout<<endl<<endl<<endl;
do
{

cout<<"Welcome to Human Resource Management (HRM) Software of Company XYZ.";
cout<<"To do specific task please choose one of the following commands."<<endl<<endl<<endl;
cout<<" 1. Add new employee"<<endl;
cout<<" 2. Delete employee information"<<endl;
cout<<" 3. Update employee information"<<endl;
cout<<" 4. Make reports based on specific field"<<endl;
cout<<" 5. Search employee"<<endl;
cout<<" 6. Quit"<<endl<<endl;


while(!(cin>>c)) //Reciving vaiables from input : is it no/character ?
{
cout << "Please enter a number! Try again: ";
cin.clear ();
cin.ignore (1000, '\n'); // Skip to next newline or 1000 chars,
// whichever comes first.
}
switch(c)
{
case 1:
cout<<"\nEnter the information of the new employee"<<endl;
info.AddPerson();
break;
case 2:
info.DeletePerson();
break;
case 3:
cout<<"\nEnter an item to deletion";
info.UpdatePerson();
break;
case 4:
cout<<"\nEnter an element to search";
info.ReportList();
break;
case 5:
info.SearchPerson();
break;
default :
cout<<"\nInvalid option try again";

}
cout<<"\nDo you want to continue";
cin>>ch;
}
while(ch=='y'||ch=='Y');


system("pause");
return 0;
}

Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Instruction Format
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education