aboutsummaryrefslogtreecommitdiff
path: root/InClassExercise7/Source.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'InClassExercise7/Source.cpp')
-rw-r--r--InClassExercise7/Source.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/InClassExercise7/Source.cpp b/InClassExercise7/Source.cpp
new file mode 100644
index 0000000..7160e51
--- /dev/null
+++ b/InClassExercise7/Source.cpp
@@ -0,0 +1,24 @@
+// Name: Asahel
+// Date: 1/29/24
+// Class: CST 116
+// Assignment: In Class Exercise 7
+
+#include <iostream>
+#include "Loops.h"
+
+using std::cout;
+using std::cin;
+using std::endl;
+
+void ForLoopExamples();
+void WhileLoopExamples();
+void DoWhileLoopExamples();
+
+int main() {
+
+ ForLoop(15);
+ WhileLoop(10);
+ DoWhileLoop(8);
+
+ return 0;
+} \ No newline at end of file