Initial commit

This commit is contained in:
Cody Cook 2023-04-11 18:40:15 -07:00
commit a8f6ecbae6
64 changed files with 886 additions and 0 deletions

22
Project2/main.cpp Normal file
View file

@ -0,0 +1,22 @@
/*
* Cody Cook
* Project 2
* SNHU
* 2023/04/02
*/
#include <iostream>
#include "Interest.h"
#include "Menu.h"
int main()
{
// print the header
printHeader();
// go through menu
menu();
std::cout << "Thank you." << std::endl << std::endl;
return 0;
}