From 9d53d8857eaa1c9405894a88ca75bc4657e42f35 Mon Sep 17 00:00:00 2001 From: msglm Date: Sat, 14 Jan 2023 05:31:48 -0600 Subject: Inital Commit --- C++/Week7-Practice1/Ch3_Ex5Data.txt | 3 ++ C++/Week7-Practice1/Ch3_Ex5Output.dat | 3 ++ C++/Week7-Practice1/practice1.cpp | 61 +++++++++++++++++++++++++++++++++++ 3 files changed, 67 insertions(+) create mode 100644 C++/Week7-Practice1/Ch3_Ex5Data.txt create mode 100644 C++/Week7-Practice1/Ch3_Ex5Output.dat create mode 100644 C++/Week7-Practice1/practice1.cpp (limited to 'C++/Week7-Practice1') diff --git a/C++/Week7-Practice1/Ch3_Ex5Data.txt b/C++/Week7-Practice1/Ch3_Ex5Data.txt new file mode 100644 index 0000000..3cce547 --- /dev/null +++ b/C++/Week7-Practice1/Ch3_Ex5Data.txt @@ -0,0 +1,3 @@ +Miller Andrew 65789.87 5 +Green Sheila 75892.56 6 +Sethi Amit 74900.50 6.1 diff --git a/C++/Week7-Practice1/Ch3_Ex5Output.dat b/C++/Week7-Practice1/Ch3_Ex5Output.dat new file mode 100644 index 0000000..d45ce4a --- /dev/null +++ b/C++/Week7-Practice1/Ch3_Ex5Output.dat @@ -0,0 +1,3 @@ +Andrew Miller 69079.36 +Sheila Green 80446.11 +Amit Sethi 79469.43 diff --git a/C++/Week7-Practice1/practice1.cpp b/C++/Week7-Practice1/practice1.cpp new file mode 100644 index 0000000..136f842 --- /dev/null +++ b/C++/Week7-Practice1/practice1.cpp @@ -0,0 +1,61 @@ +// 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 . + */ + -- cgit v1.2.3