diff options
| author | Asahel <[email protected]> | 2024-02-01 20:37:02 -0800 |
|---|---|---|
| committer | Asahel <[email protected]> | 2024-02-01 20:37:02 -0800 |
| commit | 74723928902a4fdcf717f9ee7005c2da0028d66c (patch) | |
| tree | e473a7b0b65e3a55dedc6f3596790e63c25db2f1 /InClassExercise7/Source.cpp | |
| parent | Finshed (diff) | |
| download | in-class-exercise-7-asahellt-74723928902a4fdcf717f9ee7005c2da0028d66c.tar.xz in-class-exercise-7-asahellt-74723928902a4fdcf717f9ee7005c2da0028d66c.zip | |
Implemented ForLoop
Diffstat (limited to 'InClassExercise7/Source.cpp')
| -rw-r--r-- | InClassExercise7/Source.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/InClassExercise7/Source.cpp b/InClassExercise7/Source.cpp index 7160e51..4317f95 100644 --- a/InClassExercise7/Source.cpp +++ b/InClassExercise7/Source.cpp @@ -10,15 +10,11 @@ using std::cout; using std::cin; using std::endl; -void ForLoopExamples(); -void WhileLoopExamples(); -void DoWhileLoopExamples(); - int main() { ForLoop(15); - WhileLoop(10); - DoWhileLoop(8); + //WhileLoop(10); + //DoWhileLoop(8); return 0; }
\ No newline at end of file |