// Name: Connor McDowell // date: 1/29/2024 // class: CIS116 // Reason: inclass exercise 8 #include #include "NestedLoops.h" using std::cout; using std::cin; using std::endl; int main() { int n = 2; int m = 3; //NestedForLoop(n, m); //NestedWhileLoop(n, m); NestedDoWhileLoop(n, m); return 0; }