Vending Machine Simulator Code
- Keshav Batra
- Apr 21, 2023
- 2 min read
Now that I am finished with my birthdate simulator, I am now moving onto a new project that is like a vending machine. Essentially it's going to function as a vending machine by having the player select a drink with the limited amount of money they've been given. Once they run out, they won't be able to use the machine anymore and it'll quit. Here's my code so far:
class Drinks { // The class
public: // Access specifier
int DrinkID; // Attribute (int variable)
string DrinkName; // Attribute (string variable)
float DrinkPrice;
};
int main()
{
#pragma region Drink Variables
//Drink Object Variables
Drinks Water;
Water.DrinkID = 1;
Water.DrinkName = "Dasani" ;
Water.DrinkPrice = 5;
Drinks CokeZero;
CokeZero.DrinkID = 2;
CokeZero.DrinkName = "CokeZero";
CokeZero.DrinkPrice = 3;
Drinks Pepsi;
Pepsi.DrinkID = 3;
Pepsi.DrinkName = "Pepsi";
Pepsi.DrinkPrice = 3;
Drinks Sunkist;
Sunkist.DrinkID = 4;
Sunkist.DrinkName = "Sunkist";
Sunkist.DrinkPrice = 3;
Drinks Sprite;
Sprite.DrinkID = 5;
Sprite.DrinkName = "Sprite";
Sprite.DrinkPrice = 3;
#pragma endregion
//Player Variables
int PlayerWallet = 20;
int PlayerSelect;
int PlayerAnswer;
do
{
cout << "Welcome to TC Vending\n\n\n";
cout << Water.DrinkID << ". " << Water.DrinkName << " - $" << Water.DrinkPrice << "\n";
cout << CokeZero.DrinkID << ". " << CokeZero.DrinkName << " - $" << CokeZero.DrinkPrice << "\n";
cout << Pepsi.DrinkID << ". " << Pepsi.DrinkName << " - $" << Pepsi.DrinkPrice << "\n";
cout << Sunkist.DrinkID << ". " << Sunkist.DrinkName << " - $" << Sunkist.DrinkPrice << "\n";
cout << Sprite.DrinkID << ". " << Sprite.DrinkName << " - $" << Sprite.DrinkPrice << "\n";
cin >> PlayerSelect;
if (PlayerSelect == Water.DrinkID)
{
cout << "Is this your selection?";
cin >> PlayerAnswer;
if (PlayerAnswer == 1)
{
PlayerWallet -= Water.DrinkPrice;
}
}
if (PlayerSelect == CokeZero.DrinkID)
{
cout << "Is this your selection?";
cin >> PlayerAnswer;
if (PlayerAnswer == 1)
{
PlayerWallet -= CokeZero.DrinkPrice;
}
}
if (PlayerSelect == Pepsi.DrinkID)
{
cout << "Is this your selection?";
cin >> PlayerAnswer;
if (PlayerAnswer == 1)
{
PlayerWallet -= Pepsi.DrinkPrice;
}
}
if (PlayerSelect == Sunkist.DrinkID)
{
cout << "Is this your selection?";
cin >> PlayerAnswer;
if (PlayerAnswer == 1)
{
PlayerWallet -= Sunkist.DrinkPrice;
}
}
if (PlayerSelect == Sprite.DrinkID)
{
cout << "Is this your selection?";
cin >> PlayerAnswer;
if (PlayerAnswer == 1)
{
PlayerWallet -= Sprite.DrinkPrice;
}
}
} while (PlayerWallet <= 0);
system("pause");
}
Comments