From dfca2faba4bc411b3265e5175d7f10f6e69049a5 Mon Sep 17 00:00:00 2001 From: Asahel Date: Wed, 31 Jan 2024 11:32:59 -0800 Subject: Finshed --- InClassExercise7/Source.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 InClassExercise7/Source.cpp (limited to 'InClassExercise7/Source.cpp') 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 +#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 -- cgit v1.2.3