Update fixed menu

This commit is contained in:
Lev
2021-04-12 20:49:17 -05:00
parent fc2987e84f
commit 7b6199a830
2 changed files with 50 additions and 45 deletions

View File

@ -2,60 +2,65 @@
int main(int argc, char const *argv[])
{
// 1 print help
std::cout << "1: Print help" << std::endl;
// 2 print exchange stats
std::cout << "2: Print exchange stats" << std::endl;
// 3 make an offer
std::cout << "3: Make an offer" << std::endl;
// 4 make a bid
std::cout << "4: Make a bid " << std::endl;
// 5 print wallet
std::cout << "5: Print wallet " << std::endl;
// 6 continue
std::cout << "6: Continue" << std::endl;
std::cout << "==========" << std::endl;
std::cout << "Enter an option: " << std::endl;
int userOption;
std::cin >> userOption;
std::cout << "You chose: " << userOption << std::endl;
if(userOption == 0) // bad input
while(true)
{
std::cout << "Invalid choice. Choose 1-6" << std::endl;
}
// 1 print help
std::cout << "1: Print help" << std::endl;
// 2 print exchange stats
std::cout << "2: Print exchange stats" << std::endl;
// 3 make an offer
std::cout << "3: Make an offer" << std::endl;
// 4 make a bid
std::cout << "4: Make a bid " << std::endl;
// 5 print wallet
std::cout << "5: Print wallet " << std::endl;
// 6 continue
std::cout << "6: Continue" << std::endl;
if(userOption == 1) // Option 1 - Help
{
std::cout << "Help - Your aim is to analyze the market, make bid and offers and make money." << std::endl;
}
std::cout << "==========" << std::endl;
std::cout << "Enter an option: " << std::endl;
if(userOption == 2) // Option 2 - Stats
{
std::cout << "Market looks good" << std::endl;
}
int userOption;
std::cin >> userOption;
std::cout << "You chose: " << userOption << std::endl;
if(userOption == 0) // bad input
{
std::cout << "Invalid choice. Choose 1-6" << std::endl;
}
if(userOption == 3) // Option 3 - Offer
{
std::cout << "Make an offer - Enter the amount: " << std::endl;
}
if(userOption == 1) // Option 1 - Help
{
std::cout << "Help - Your aim is to analyze the market, make bid and offers and make money." << std::endl;
}
if(userOption == 4) // Option 4 - Bid
{
std::cout << "Make a bid - Enter the amount: " << std::endl;
}
if(userOption == 2) // Option 2 - Stats
{
std::cout << "Market looks good" << std::endl;
}
if(userOption == 5) // Option 5 - Wallet
{
std::cout << "Your wallet is empty. " << std::endl;
}
if(userOption == 3) // Option 3 - Offer
{
std::cout << "Make an offer - Enter the amount: " << std::endl;
}
if(userOption == 0) // bad input
{
std::cout << "Going to next time frame. " << std::endl;
}
if(userOption == 4) // Option 4 - Bid
{
std::cout << "Make a bid - Enter the amount: " << std::endl;
}
if(userOption == 5) // Option 5 - Wallet
{
std::cout << "Your wallet is empty. " << std::endl;
}
if(userOption == 6) // bad input
{
std::cout << "Going to next time frame. " << std::endl;
return 0;
}
}
return 0;
}