diff options
author | msglm <msglm@techchud.xyz> | 2023-01-14 05:31:48 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2023-01-14 05:31:48 -0600 |
commit | 9d53d8857eaa1c9405894a88ca75bc4657e42f35 (patch) | |
tree | eb1efc1d028b949dd83bb710c68be8eff58f26e7 /C++/Week7-Practice1 | |
download | school-code-master.tar.gz school-code-master.tar.bz2 school-code-master.zip |
Diffstat (limited to 'C++/Week7-Practice1')
-rw-r--r-- | C++/Week7-Practice1/Ch3_Ex5Data.txt | 3 | ||||
-rw-r--r-- | C++/Week7-Practice1/Ch3_Ex5Output.dat | 3 | ||||
-rw-r--r-- | C++/Week7-Practice1/practice1.cpp | 61 |
3 files changed, 67 insertions, 0 deletions
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 <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/>. + */ + |