Initial commit
This commit is contained in:
commit
a8f6ecbae6
64 changed files with 886 additions and 0 deletions
22
Project2/main.cpp
Normal file
22
Project2/main.cpp
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue