summaryrefslogtreecommitdiffstats
path: root/C++/Week7-Practice1/practice1.cpp
blob: 136f8421b6a03097e12353721a4a82b9d50dabba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Name: msglm
// Date: 
// Program Name:
// Description: 


#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
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 <https://www.gnu.org/licenses/>.
 */