A program to demonstrate how to declare and use encapsulation in C++ programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me at the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

Please subscribe to my channel  https://www.youtube.com/channel/UCOs-lpOoIeJoh6gpJthPoGg

=================================================



You can buy my C++ book online at  



Beginner’s Guide To C++ Programming
You can buy my book in introduction to computer networking at https://www.unlimitedbooksph.com/product-page/introduction-to-computer-networking Want to support my channel? GCash Account Jake Pomperada 09173084360 Paypal https://paypal.me/jakerpomperada Patreon https://www.patreon.com/jakerpomperada Thank you very much for your support.

Program Listing

#include <iostream>
#include <string>
#include <iomanip>

class Employee {
private:
    std::string name;
    int id;
    double salary;

public:
    // Constructor to initialize employee attributes
    Employee(const std::string& empName, int empID, double empSalary) {
        name = empName;
        id = empID;
        salary = empSalary;
    }

    // Method to display employee information
    void displayInfo() {
         std::cout << "\n\tEmployees Information Using Encapsulation in C++\n\n";
        std::cout << "\tEmployee Name: " << name << std::endl;
        std::cout << "\tEmployee ID: " << id << std::endl;
        std::cout << "\tEmployee Salary: PHP " << std::fixed <<std::setprecision(2)  << salary << std::endl;
    }

    // Method to give a raise to the employee's salary
    void giveRaise(double raiseAmount) {
        salary += raiseAmount;
        std::cout << "\tSalary raised by PHP " <<std::fixed <<std::setprecision(2)  <<  raiseAmount << std::endl;
    }
};

int main() {
    // Create an Employee object
    Employee emp("Leslie Pepito", 2002, 60412.34);

    // Display employee information
    emp.displayInfo();

    // Give a raise of $7135.45 to the employee
    emp.giveRaise(7135.45);

    // Display updated employee information
    emp.displayInfo();

    return 0;
}