summaryrefslogtreecommitdiff
path: root/CST116F2021-Lab5/CST116F2021-Lab5Exercises_Schroeder.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CST116F2021-Lab5/CST116F2021-Lab5Exercises_Schroeder.cpp')
-rw-r--r--CST116F2021-Lab5/CST116F2021-Lab5Exercises_Schroeder.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/CST116F2021-Lab5/CST116F2021-Lab5Exercises_Schroeder.cpp b/CST116F2021-Lab5/CST116F2021-Lab5Exercises_Schroeder.cpp
new file mode 100644
index 0000000..2bdb3ab
--- /dev/null
+++ b/CST116F2021-Lab5/CST116F2021-Lab5Exercises_Schroeder.cpp
@@ -0,0 +1,46 @@
+// Lab5_Schroeder_TestScores.cpp : This file contains the 'main' function. Program execution begins and ends there.
+//
+
+
+#include "Lab5Exercises.h"
+
+
+int main()
+{
+ cout << "10.6 Learn by Doing Exercises\n";
+ TenSix();
+ cout << "10.7 Learn by Doing Exercise\n";
+ TenSeven();
+ cout << "10.8_7 Exercises\n";
+ TenEight_Seven();
+
+}
+
+
+
+
+
+
+
+/*
+#include<iostream>
+using namespace std;
+
+
+int main()
+{
+ char firstName[20]{};
+ int i = 0;
+
+ cout << "Enter your name: ";
+ cin >> firstName; //just giving it a name
+ cout << " Your first name is: \n";
+
+ while (firstName[i] != '\0')
+ {
+ cout << &firstName[i] << endl; //&
+ i++;
+ }
+
+}
+*/