diff options
| author | Asahel <[email protected]> | 2024-01-31 11:32:59 -0800 |
|---|---|---|
| committer | Asahel <[email protected]> | 2024-01-31 11:32:59 -0800 |
| commit | dfca2faba4bc411b3265e5175d7f10f6e69049a5 (patch) | |
| tree | 41ce0ca075f0c64571bff809a9564ef02fcc081d /InClassExercise7/Source.cpp | |
| parent | add deadline (diff) | |
| download | in-class-exercise-7-asahellt-dfca2faba4bc411b3265e5175d7f10f6e69049a5.tar.xz in-class-exercise-7-asahellt-dfca2faba4bc411b3265e5175d7f10f6e69049a5.zip | |
Finshed
Diffstat (limited to 'InClassExercise7/Source.cpp')
| -rw-r--r-- | InClassExercise7/Source.cpp | 24 |
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 |