Write a program that performs following tasks:
1. Declare three arrays. The sizes of these arrays are all
100. The first array is of integer type. The second and the third
ones are of double type. You may name the arrays as employeeId, hours
and rates respectively.
2. Read the data, total 100 rows, from the file and store them in the three
arrays respectively.
3. Calculate and display the average hours and the average rate.
4. (Bonus)Find and display the employeeID that have earned the most salary.
TotalSalary = TotalHours * rate
This is all I have so far... Please advise???
#include <iostream>
#include <ifstream>
using namespace std;
int main()
{
int employee[100]
double hours [100]
double rate [100]