Vending Machine Update
- Keshav Batra
- May 12, 2023
- 1 min read
So I've made a few changes to the code and made it so that if the player selects an object, the price will go down and say the name of the drink that was bought. I have made a few changes to code, mainly removing the classes.
int main()
{
int PlayerWallet = 20;
int PlayerAnswer;
do {
cout << "Welcome to TC Vending!! \n\n";
cout << "Please make a selection down below!! \n\n";
cout << "1). Sprite - $3 \n\n 2). Coke Zero - $3 \n\n 3). Water - $3 \n\n 4). Fanta - $5 \n\n 5). Pepsi - $5 \n\n 6). Cancel Selection \n\n";
cin >> PlayerAnswer;
if (PlayerAnswer == 1)
{
cout << "Thanks for buying Sprite!!\n\n";
PlayerWallet = PlayerWallet - 3;
}
else if (PlayerAnswer == 2)
{
cout << "Thanks for buying Coke Zero!!\n\n";
PlayerWallet = PlayerWallet - 3;
cout << "Your current amount is" << PlayerWallet;
}
else if (PlayerAnswer == 3)
{
cout << "Thanks for buying Water!!\n\n";
PlayerWallet = PlayerWallet - 3;
cout << "Your current amount is" << PlayerWallet;
}
else if (PlayerAnswer == 4)
{
cout << "Thanks for buying Fanta!! \n\n";
PlayerWallet = PlayerWallet - 5;
cout << "Your current amount is" << PlayerWallet;
}
else if (PlayerAnswer == 5)
{
cout << "Thanks for buying Pepsi!! \n\n";
PlayerWallet = PlayerWallet - 5;
cout << "Your current amount is" << PlayerWallet;
}
else if (PlayerAnswer == 6)
{
cout << "Exiting Program!! \n\n";
}
} while (PlayerAnswer > 6);
system("pause");
}
https://youtu.be/-imdr2CDXoM
Comments