aboutsummaryrefslogtreecommitdiff
path: root/InClassExercise7/Source.cpp
blob: 4317f95e3052488f074e4591c625014663fc402b (plain) (blame)
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;
}