1

私はすべてを試しましたが、私が持っているものは間違っていることがわかっていますが、少なくとも出力は2つのファイルの1つに必要な方法でフォーマットされています. 異なる情報を持つ 2 つの別個の .txt ファイルに情報を送信する必要があります。すでに持っている現在の配列関数を使用してそれを行うにはどうすればよいですか。私はこれを理解しようと何時間も費やしましたが、今は皆さん次第です! ありがとうございました。

主要-

#include<iostream>
#include<fstream>
#include<string>
#include "Payroll.h"
using namespace std;


const int NUM_EMPLOYEE = 75;

int main()
{
    int dependents;
    double payrate;
    string name;
    double hours;
    ifstream fin;
    int count = 0;
    Payroll employeeArray[NUM_EMPLOYEE];

    fin.open("employeeData.txt");

    if (!fin)
    {
        cout << "Error opening data file\n";
        return 0;
    }
    else
    {
        while(fin >> payrate >> dependents)
        {
            getline(fin, name);
            employeeArray[count].setWage(payrate);
            employeeArray[count].setDependents(dependents);
            employeeArray[count].setName(name);
            cout << "How many hours has" << name << " worked? ";
                cin >> hours;
                employeeArray[count].setHours(hours);
            count++;
        }

    }

    for (int i = 0; i < count; i++)
    {
        employeeArray[i].printPayDetails(cout << endl);
    }

    cout << endl;

    return 0;
}

印刷機能-

void Payroll::printPayDetails(ostream& out)
{
    double normPay = getNormPay();
    double overTime = getOverPay();
    double grossPay = getGrossPay();
    double taxAmount = getTaxRate();
    double netPay = computePay();
    const int SIZE = 9;
    out << fixed << setprecision(2) << right << setw(5) << hours  << setw(SIZE)  << normPay << setw(SIZE) << overTime ;
    out << setw(SIZE) << grossPay << setw(SIZE) << taxAmount <<setw(SIZE) << netPay;
}
4

1 に答える 1