summaryrefslogtreecommitdiffstats
path: root/C++/Week7-Practice1/practice1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'C++/Week7-Practice1/practice1.cpp')
-rw-r--r--C++/Week7-Practice1/practice1.cpp61
1 files changed, 61 insertions, 0 deletions
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/>.
+ */
+