diff options
Diffstat (limited to 'InClassExercise7/Loops.h')
| -rw-r--r-- | InClassExercise7/Loops.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/InClassExercise7/Loops.h b/InClassExercise7/Loops.h new file mode 100644 index 0000000..6b4bb43 --- /dev/null +++ b/InClassExercise7/Loops.h @@ -0,0 +1,9 @@ +#ifndef LOOPS_H +#define LOOPS_H + + +void ForLoop(size_t n); +void WhileLoop(size_t n); +void DoWhileLoop(size_t n); + +#endif // !LOOPS_H
\ No newline at end of file |