aboutsummaryrefslogtreecommitdiff
path: root/Homework3/Source.cpp
blob: d21f4f1582a58a24dcd92687a1f730807bade56b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Name: Asahel Lopez
// Date: 1/29/24
// Class: CST 116
// Assignment: Homework 3

#include <iostream>
#include "recursive.h"

int main (){
	int n, result;

	std::cout << factorial(5);

}