/* PROGRAM DEMO: This program illustrates the structure of a simple C++ program. */ // declares the input/output operations #include // file containing declaration of Employee class #include "c:/ftsoft/include/employee.h" void main() { double change, // keyboard input newSalary; // result of change // Employee 1975001 started with $7000 salary on May 17, 1975 Employee currentEmployee("1975001",7000.00,05,17,1975); cout << "The current salary is $" << currentEmployee.getSalary() << endl; // get value for update cout << "Enter the change in salary:" << endl; cin >> change; // and echo it: cout << endl; cout << "The value entered for the change: $" << change << endl; // updates the current employee data newSalary = currentEmployee.getSalary() + change; currentEmployee.setSalary(newSalary); // the complete new information: cout << endl; cout << "Current employee information:" << endl <