-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.cpp
More file actions
16 lines (15 loc) · 740 Bytes
/
menu.cpp
File metadata and controls
16 lines (15 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//This code displays the menu bar for the application.
#include "head.hpp"
#include <iostream>
void menu(){
std::cout<<'\t'<<"** Welcome to the PREDICTA EXPENSE **"<<'\n';
std::cout<<"+-----------------------------------+"<<'\n';
std::cout<<"| [1]--- User BUDGET |"<<'\n';
std::cout<<"| [2]--- Add EXPENSE |"<<'\n';
std::cout<<"| [3]--- WARNINGS |"<<'\n';
std::cout<<"| [4]--- Weekly LOG |"<<'\n';
std::cout<<"| [5]--- All time LOG history |"<<'\n';
std::cout<<"| [6]--- Insights AND Strategies |"<<'\n';
std::cout<<"| [7]--- EXIT |"<<'\n';
std::cout<<"|___________________________________|"<<'\n';
}