Advertisement
Guest User

12345

a guest
Feb 8th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. #include <iostream>
  2. #include <iomanip>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.  
  9.  
  10.  
  11. cout <<setw (45)<<"EMPLOYEES RECORD"<< endl;
  12.  
  13. cout << "Employee#" << setw(25) << "Employee Name" << setw(20) << "Department" << setw(25) << "Salary Increase" << endl;
  14. cout << "123456" << setw(25) << "Awatin, Rirk Jalvin" << setw(20) << "AGD" << setw(25) << "2500.00" << endl;
  15. cout << "123457" << setw(25) << "Calem, Van Triston" << setw(20) << "WMA" << setw(25) << "1500.00" << endl;
  16. cout << "123458" << setw(25) << "Maghanay, Goie San" << setw(20) << "CS" << setw(25) << "1700.00" << endl;
  17. cout << "123459" << setw(25) << "Pares, Marie Rose" << setw(20) << "AGD" << setw(25) << "1900.00" << endl;
  18. cout << "123460" << setw(25) << "Rozalin, Genie" << setw(20) << "WMA" << setw(25) << "2100.00" << endl;
  19. cout << "123461" << setw(25) << "Salazar, Dondie" << setw(20) << "DA" << setw(25) << "1450.00" << endl;
  20.  
  21.  
  22.  
  23.  
  24. system("pause>0");
  25.  
  26. return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement