interestcalculator/Project2/Menu.h
2023-04-11 18:40:15 -07:00

23 lines
490 B
C++

/*
* 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