I made a program for this problem= Each employee of a company contributes 6% of his salary towards his retirement account each month. The company will also make a contribution equal to 3 % of the employee’s salary. They need a program to manage the retirement accounts. The user will enter the monthly salary of an employee. The program will calculate and display the following items: amount of money contributed by the employee each month, amount of money contributed by the company each month, total contribution each month (i.e. the sum of employee’s and company’s contributions).)))
my code is = #include <cstdlib>
#include <iostream>
#include <istream>
using namespace std;