1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// 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; int main() { ForLoop(15); //WhileLoop(10); //DoWhileLoop(8); return 0; }