22 lines
307 B
C++
22 lines
307 B
C++
/*
|
|
* 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;
|
|
} |