// Name: msglm // Date: // Program Name: // Description: #include #include #include #include using namespace std; // Named constants int main() { //Variable declaration ifstream inputData; ofstream formattedData; string last, first; double curSal, percent, nuSal; //Program title and description for the user cout << "Title: Salary Updater" << endl << "Description: Updates Salary" << endl; // User input inputData.open("Ch3_Ex5Data.txt"); formattedData.open("Ch3_Ex5Output.dat"); if (inputData) { cout << "Successfully opened file"; } else { cout << "ERROR: No File Provided \n"; return 1; } //TODO find a better way to do this // Calculations while ( true ) { inputData >> last >> first >> curSal >> percent; formattedData << fixed << showpoint << setprecision(2); nuSal = curSal + (curSal * (percent/100)); if ( !inputData.eof() ){ formattedData << first << " " << last << " " << nuSal << " " << endl; } else { break; } } // Output to the screen return 0; } /*This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. * You should have received a copy of the GNU General Public License along with this program. If not, see . */