#include <algorithm> #include <iostream> #include <string> // write your code here...... #include <vector> #include <iomanip> using namespace std; class Employee { private: string name; double salary; // write your code here...... public: Employee(string m_name, double ...