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

23
Project2/Menu.h Normal file
View file

@ -0,0 +1,23 @@
/*
* Cody Cook
* Project 2
* SNHU
* 2023/04/02
*/
#ifndef MENU_H
#define MENU_H
#include <string>
#include <iomanip>
#include <iostream>
#pragma once
void surroundText(std::string t_text, int t_lineLength, char t_dataInputLine, bool t_bothTopBottom);
void separator(int t_lineLength, char t_dataInputLine, bool t_emptyLine = true);
void printDetails(unsigned int t_year, double t_yearEndBalance, double t_interestEarned);
void menu();
void printHeader();
#endif